From 8d93176bdbf9bd77ca0e1a26bcf5d4aee90e2c73 Mon Sep 17 00:00:00 2001 From: jmunro Date: Sat, 2 Feb 2002 22:13:17 +0000 Subject: [PATCH] toggle all is back for a single folder search only. jason git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2348 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/imap_search.php | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/functions/imap_search.php b/functions/imap_search.php index fad2f502..ba69165a 100644 --- a/functions/imap_search.php +++ b/functions/imap_search.php @@ -38,7 +38,7 @@ function sqimap_search($imapConnection,$search_where,$search_what,$mailbox,$colo } else { $search_string = ''; - $count = count($multi_search); + $count = count($multi_search); for ($x=0;$x<$count;$x++) { $search_string = $search_string . ' ' . $search_where . " " . '"' . $multi_search[$x] . '" '; } @@ -173,14 +173,21 @@ function sqimap_search($imapConnection,$search_where,$search_what,$mailbox,$colo if (!isset ($msg)) { $msg = ''; } - mail_message_listing_beginning( $imapConnection, - "move_messages.php?msg=$msg&mailbox=$urlMailbox&pos=$pos&where=" . urlencode($search_where) . "&what=".urlencode($search_what), + if ($search_all != 'all') { + mail_message_listing_beginning( $imapConnection, + "move_messages.php?msg=$msg&mailbox=$urlMailbox&pos=$pos&where=" . urlencode($search_where) . "&what=".urlencode($search_what), $mailbox, - -1, - '' . _("Found") . ' ' . count($messagelist) . ' ' . _("messages") . ''); - #get_selectall_link($start_msg, $sort) ); - -# echo ''; + -1, + '' . _("Found") . ' ' . count($messagelist) . ' ' . _("messages") . ''. + get_selectall_link($start_msg, $sort)); + } + else { + mail_message_listing_beginning( $imapConnection, + "move_messages.php?msg=$msg&mailbox=$urlMailbox&pos=$pos&where=" . urlencode($search_where) . "&what=".urlencode($search_what), + $mailbox, + -1, + '' . _("Found") . ' ' . count($messagelist) . ' ' . _("messages") . ''); + } echo "
$mailbox
"; while ($j < count($msgs)) { printMessageInfo($imapConnection, $msgs[$j]["ID"], 0, $j, $mailbox, '', 0, $search_where, $search_what); -- 2.25.1