From 6edca88531e7ed0314c30eb0ccafb76d6ce270a9 Mon Sep 17 00:00:00 2001 From: lkehresman Date: Thu, 1 Feb 2001 00:39:52 +0000 Subject: [PATCH] fixed more warnings git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@1024 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/mailbox_display.php | 38 +++++++++++++++++------------------ 1 file changed, 18 insertions(+), 20 deletions(-) diff --git a/functions/mailbox_display.php b/functions/mailbox_display.php index 988f708f..41db0015 100644 --- a/functions/mailbox_display.php +++ b/functions/mailbox_display.php @@ -31,42 +31,42 @@ if (isset($msg['FLAG_FLAGGED']) && $msg['FLAG_FLAGGED'] == true) { $flag = ""; - $flag_end = ''; + $flag_end = ''; } else { $flag = ''; - $flag_end = ''; + $flag_end = ''; } if (!isset($msg['FLAG_SEEN']) && $msg['FLAG_SEEN'] == false) { $bold = ''; - $bold_end = ''; + $bold_end = ''; } else { $bold = ''; - $bold_end = ''; + $bold_end = ''; } if ($mailbox == $sent_folder) { $italic = ''; - $italic_end = ''; + $italic_end = ''; } else { $italic = ''; - $italic_end = ''; + $italic_end = ''; } if (isset($msg['FLAG_DELETED']) && $msg['FLAG_DELETED']) { $fontstr = ""; - $fontstr_end = ''; + $fontstr_end = ''; } else { $fontstr = ''; - $fontstr_end = ''; + $fontstr_end = ''; } for ($i=0; $i < count($message_highlight_list); $i++) { @@ -108,7 +108,7 @@ break; case 4: # subject echo " $bold"; - if (! isset($search_stuff)) { $search_stuff = ''; } + if (! isset($search_stuff)) { $search_stuff = ''; } echo "$flag"; @@ -122,7 +122,7 @@ $stuff = false; echo " \n"; if (isset($msg['FLAG_ANSWERED']) && - $msg['FLAG_ANSWERED'] == true) { + $msg['FLAG_ANSWERED'] == true) { echo "A\n"; $stuff = true; } @@ -233,7 +233,7 @@ } else { $end = $numMessages; } - if ($end > $numMessages) $end = $numMessages; + if ($end > $numMessages) $end = $numMessages; while ($j < $end) { $date[$j] = ereg_replace(' ', ' ', $date[$j]); $tmpdate = explode(' ', trim($date[$j])); @@ -280,7 +280,7 @@ /* Only ignore messages flagged as deleted if we are using a * trash folder or auto_expunge */ if (((isset($move_to_trash) && $move_to_trash) - || (isset($auto_expunge) && $auto_expunge)) && $sort != 6) + || (isset($auto_expunge) && $auto_expunge)) && $sort != 6) { /** Find and remove the ones that are deleted */ $i = 0; @@ -297,8 +297,8 @@ } $numMessages = $i; } else { - if (! isset($messages)) - $messages = array(); + if (! isset($messages)) + $messages = array(); $msgs = $messages; } } @@ -420,7 +420,7 @@ else $i = 1; reset($msort); - $k = 0; + $k = 0; do { $key = key($msort); next($msort); @@ -431,7 +431,7 @@ $i = $startMessage; reset($msort); - $k = 0; + $k = 0; do { $key = key($msort); next($msort); @@ -514,13 +514,11 @@ $boxes = sqimap_mailbox_list($imapConnection); for ($i = 0; $i < count($boxes); $i++) { - if ($boxes[$i]['flags'][0] != 'noselect' && - $boxes[$i]['flags'][1] != 'noselect' && - $boxes[$i]['flags'][2] != 'noselect') { + if (!in_array("noselect", $boxes[$i]["flags"])) { $box = $boxes[$i]['unformatted']; $box2 = replace_spaces($boxes[$i]['unformatted-disp']); echo " \n"; - } + } } echo ' '; echo ' \n"; -- 2.25.1