From: robsiemb Date: Thu, 24 Oct 2002 19:37:39 +0000 (+0000) Subject: select all link should actually do something X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=59352d0863b14f237ef1a539940d2c314c2f7ac0;p=squirrelmail.git select all link should actually do something git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@4013 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/functions/mailbox_display.php b/functions/mailbox_display.php index 309a6f43..9b55139c 100644 --- a/functions/mailbox_display.php +++ b/functions/mailbox_display.php @@ -142,7 +142,7 @@ function printMessageInfo($imapConnection, $t, $not_last=true, $key, $mailbox, if (!isset($hlt_color)) { $hlt_color = $color_string; } - $checked = ($checkall == 1) ? true : false; + $checked = ($checkall == 1) ? ' CHECKED' : ''; $col = 0; if (sizeof($index_order)) { foreach ($index_order as $index_order_part) { @@ -543,8 +543,7 @@ function fillMessageArray($imapConnection, $id, $count) { function displayMessageArray($imapConnection, $num_msgs, $start_msg, $msort, $mailbox, $sort, $color, $show_num, $where=0, $what=0) { - global $imapServerAddress, $use_mailbox_cache, - $index_order, $checkall, + global $imapServerAddress, $use_mailbox_cache, $index_order, $indent_array, $thread_sort_messages, $allow_server_sort, $server_sort_order, $PHP_SELF;