Explorar o código

fixed for changes to conf.pl.

jmunro %!s(int64=23) %!d(string=hai) anos
pai
achega
2a9c4554b7
Modificáronse 5 ficheiros con 22 adicións e 22 borrados
  1. 10 10
      functions/mailbox_display.php
  2. 1 1
      src/options_display.php
  3. 8 8
      src/read_body.php
  4. 1 1
      src/right_main.php
  5. 2 2
      src/search.php

+ 10 - 10
functions/mailbox_display.php

@@ -257,7 +257,7 @@ function showMessagesForMailbox($imapConnection, $mailbox, $num_msgs,
       }
       }
   }
   }
 
 
-  if ($allow_server_sort == 'true' && $thread_sort_messages != 1) {
+  if ($allow_server_sort == TRUE && $thread_sort_messages != 1) {
     $server_sort_order = $sort;
     $server_sort_order = $sort;
     $id = sqimap_get_sort_order($imapConnection, $server_sort_order);
     $id = sqimap_get_sort_order($imapConnection, $server_sort_order);
   if ($id == 'no') {
   if ($id == 'no') {
@@ -265,7 +265,7 @@ function showMessagesForMailbox($imapConnection, $mailbox, $num_msgs,
        'is not supported by your IMAP server.<br>Please report this'.
        'is not supported by your IMAP server.<br>Please report this'.
        ' to the system administrator.</center></small></b>';
        ' to the system administrator.</center></small></b>';
     $sort = $server_sort_order;
     $sort = $server_sort_order;
-	  $allow_server_sort = false;
+	  $allow_server_sort = FALSE;
 	  $id = array();
 	  $id = array();
 	}
 	}
 	else {
 	else {
@@ -292,7 +292,7 @@ function showMessagesForMailbox($imapConnection, $mailbox, $num_msgs,
       if ($sort < 6 ) {
       if ($sort < 6 ) {
 	$id = range(1, $num_msgs);
 	$id = range(1, $num_msgs);
       } 
       } 
-      elseif ($thread_sort_messages != 1 && $allow_server_sort != 'true' && $sort == 6) {
+      elseif ($thread_sort_messages != 1 && $allow_server_sort != TRUE && $sort == 6) {
 	/* if it's not sorted */
 	/* if it's not sorted */
 	if ($start_msg + ($show_num - 1) < $num_msgs){
 	if ($start_msg + ($show_num - 1) < $num_msgs){
 	  $end_msg = $start_msg + ($show_num - 1);
 	  $end_msg = $start_msg + ($show_num - 1);
@@ -456,7 +456,7 @@ function showMessagesForMailbox($imapConnection, $mailbox, $num_msgs,
       }
       }
     }		
     }		
     session_register('msort');
     session_register('msort');
-  } elseif ($thread_sort_messages == 1 || $allow_server_sort == 'true') {
+  } elseif ($thread_sort_messages == 1 || $allow_server_sort == TRUE) {
     $msort = $msgs;
     $msort = $msgs;
     session_unregister('msgs');
     session_unregister('msgs');
     session_register('msort');
     session_register('msort');
@@ -673,7 +673,7 @@ function mail_message_listing_beginning ($imapConnection, $moveURL,
     . "   </TR>\n";
     . "   </TR>\n";
 
 
   /* draws thread sorting links */
   /* draws thread sorting links */
-  if ($allow_thread_sort == 'true') {
+  if ($allow_thread_sort == TRUE) {
     if ($thread_sort_messages == 1 ) {
     if ($thread_sort_messages == 1 ) {
       $set_thread = 2;
       $set_thread = 2;
       $thread_name = 'Unthread View';
       $thread_name = 'Unthread View';
@@ -705,7 +705,7 @@ function mail_message_listing_beginning ($imapConnection, $moveURL,
    * instead. but here we reset sort for a bit
    * instead. but here we reset sort for a bit
    * since its easy
    * since its easy
    */
    */
-  if ($allow_server_sort == 'true') {
+  if ($allow_server_sort == TRUE) {
     $sort = $server_sort_order;
     $sort = $server_sort_order;
   }
   }
   /* Print the headers. */
   /* Print the headers. */
@@ -721,21 +721,21 @@ function mail_message_listing_beginning ($imapConnection, $moveURL,
       } else {
       } else {
 	echo '   <TD WIDTH="25%"><B>' . _("From") . '</B>';
 	echo '   <TD WIDTH="25%"><B>' . _("From") . '</B>';
       }
       }
-      if ($allow_thread_sort != 'true' || $thread_sort_messages != 1) {
+      if ($allow_thread_sort != TRUE || $thread_sort_messages != 1) {
 	ShowSortButton($sort, $mailbox, 2, 3);
 	ShowSortButton($sort, $mailbox, 2, 3);
       }
       }
       echo "</TD>\n";
       echo "</TD>\n";
       break;
       break;
     case 3: /* date */
     case 3: /* date */
       echo '   <TD NOWRAP WIDTH="5%"><B>' . _("Date") . '</B>';
       echo '   <TD NOWRAP WIDTH="5%"><B>' . _("Date") . '</B>';
-      if ($allow_thread_sort != 'true' || $thread_sort_messages != 1) {
+      if ($allow_thread_sort != TRUE || $thread_sort_messages != 1) {
 	ShowSortButton($sort, $mailbox, 0, 1);
 	ShowSortButton($sort, $mailbox, 0, 1);
       }
       }
       echo "</TD>\n";
       echo "</TD>\n";
       break;
       break;
     case 4: /* subject */
     case 4: /* subject */
       echo '   <TD><B>' . _("Subject") . '</B> ';
       echo '   <TD><B>' . _("Subject") . '</B> ';
-      if ($allow_thread_sort != 'true' || $thread_sort_messages != 1) {
+      if ($allow_thread_sort != TRUE || $thread_sort_messages != 1) {
 	ShowSortButton($sort, $mailbox, 4, 5);
 	ShowSortButton($sort, $mailbox, 4, 5);
       }
       }
       echo "</TD>\n";
       echo "</TD>\n";
@@ -748,7 +748,7 @@ function mail_message_listing_beginning ($imapConnection, $moveURL,
   /* if using server-sorting,
   /* if using server-sorting,
    * send sort back to 6
    * send sort back to 6
    */
    */
-  if ($allow_server_sort == 'true') {
+  if ($allow_server_sort == TRUE) {
     $sort = 6;
     $sort = 6;
   }
   }
   echo "</TR>\n";
   echo "</TR>\n";

+ 1 - 1
src/options_display.php

@@ -281,7 +281,7 @@ function load_optpage_data_display() {
         'type'    => SMOPT_TYPE_BOOLEAN,
         'type'    => SMOPT_TYPE_BOOLEAN,
         'refresh' => SMOPT_REFRESH_ALL
         'refresh' => SMOPT_REFRESH_ALL
     );
     );
-    if ($allow_thread_sort == 'true') {
+    if ($allow_thread_sort == TRUE) {
         $optvals[SMOPT_GRP_MESSAGE][] = array(
         $optvals[SMOPT_GRP_MESSAGE][] = array(
             'name'    => 'sort_by_ref',
             'name'    => 'sort_by_ref',
             'caption' => _("Use References header for thread sort"),
             'caption' => _("Use References header for thread sort"),

+ 8 - 8
src/read_body.php

@@ -32,10 +32,10 @@ function findNextMessage() {
            $server_sort_array;
            $server_sort_array;
     if (!is_array($server_sort_array)) {
     if (!is_array($server_sort_array)) {
         $thread_sort_messages = 0;
         $thread_sort_messages = 0;
-        $allow_server_sort = 'false';
+        $allow_server_sort = FALSE;
     }
     }
     $result = -1;
     $result = -1;
-    if ($thread_sort_messages == 1 || $allow_server_sort == 'true') {
+    if ($thread_sort_messages == 1 || $allow_server_sort == TRUE) {
         reset($server_sort_array);
         reset($server_sort_array);
         while(list($key, $value) = each ($server_sort_array)) {
         while(list($key, $value) = each ($server_sort_array)) {
             if ($currentArrayIndex == $value) {
             if ($currentArrayIndex == $value) {
@@ -48,13 +48,13 @@ function findNextMessage() {
             }
             }
         }
         }
     } 
     } 
-    elseif ($sort == 6 && $allow_server_sort != 'true' &&
+    elseif ($sort == 6 && $allow_server_sort != TRUE &&
             $thread_sort_messages != 1) {
             $thread_sort_messages != 1) {
         if ($currentArrayIndex != 1) {
         if ($currentArrayIndex != 1) {
             $result = $currentArrayIndex - 1;
             $result = $currentArrayIndex - 1;
         }
         }
     }
     }
-    elseif ($allow_server_sort != 'true' && $thread_sort_messages != 1 ) {
+    elseif ($allow_server_sort != TRUE && $thread_sort_messages != 1 ) {
         if (!is_array($msort)) {
         if (!is_array($msort)) {
             return -1;
             return -1;
         }
         }
@@ -95,9 +95,9 @@ function findPreviousMessage() {
     $result = -1;
     $result = -1;
     if (!is_array($server_sort_array)) {
     if (!is_array($server_sort_array)) {
         $thread_sort_messages = 0;
         $thread_sort_messages = 0;
-        $allow_server_sort = 'false';
+        $allow_server_sort = FALSE;
     }
     }
-    if ($thread_sort_messages == 1 || $allow_server_sort == 'true') {
+    if ($thread_sort_messages == 1 || $allow_server_sort == TRUE) {
         reset($server_sort_array);
         reset($server_sort_array);
         while(list($key, $value) = each ($server_sort_array)) {
         while(list($key, $value) = each ($server_sort_array)) {
             if ($currentArrayIndex == $value) {
             if ($currentArrayIndex == $value) {
@@ -110,14 +110,14 @@ function findPreviousMessage() {
             }
             }
         }
         }
     }
     }
-    elseif ($sort == 6 && $allow_server_sort != 'true' && 
+    elseif ($sort == 6 && $allow_server_sort != TRUE && 
             $thread_sort_messages != 1) {
             $thread_sort_messages != 1) {
         $numMessages = sqimap_get_num_messages($imapConnection, $mailbox);
         $numMessages = sqimap_get_num_messages($imapConnection, $mailbox);
         if ($currentArrayIndex != $numMessages) {
         if ($currentArrayIndex != $numMessages) {
             $result = $currentArrayIndex + 1;
             $result = $currentArrayIndex + 1;
         }
         }
     } 
     } 
-    elseif ($thread_sort_messages != 1 && $allow_server_sort != 'true') {
+    elseif ($thread_sort_messages != 1 && $allow_server_sort != TRUE) {
         if (!is_array($msort)) {
         if (!is_array($msort)) {
             return -1;
             return -1;
         }
         }

+ 1 - 1
src/right_main.php

@@ -81,7 +81,7 @@ if ($imap_server_type == 'uw' && (strstr($mailbox, '../') ||
 
 
 /* decide if we are thread sorting or not */
 /* decide if we are thread sorting or not */
 global $allow_thread_sort;
 global $allow_thread_sort;
-if ($allow_thread_sort == 'true') {
+if ($allow_thread_sort == TRUE) {
     if (isset($set_thread)) {
     if (isset($set_thread)) {
         if ($set_thread == 1) {
         if ($set_thread == 1) {
             setPref($data_dir, $username, "thread_$mailbox", 1);
             setPref($data_dir, $username, "thread_$mailbox", 1);

+ 2 - 2
src/search.php

@@ -368,9 +368,9 @@ do_hook('search_after_form');
 */
 */
 
 
 $old_value = 0;
 $old_value = 0;
-if ($allow_thread_sort == true) {
+if ($allow_thread_sort == TRUE) {
     $old_value = $allow_thread_sort;
     $old_value = $allow_thread_sort;
-    $allow_thread_sort = false;
+    $allow_thread_sort = FALSE;
 }
 }
 
 
 if ($search_all == 'all') {
 if ($search_all == 'all') {