From 632a9a19bea180662bb615228cd5d8e2b0477f16 Mon Sep 17 00:00:00 2001 From: jmunro Date: Tue, 28 May 2002 00:17:49 +0000 Subject: [PATCH] fix for search function trying ASCII when CHARSET fails. bug #552288 git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@2879 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/imap_search.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/imap_search.php b/functions/imap_search.php index 0d9fb306..f7d8c332 100644 --- a/functions/imap_search.php +++ b/functions/imap_search.php @@ -51,7 +51,7 @@ function sqimap_search($imapConnection, $search_where, $search_what, $mailbox, } /* read data back from IMAP */ - $readin = sqimap_run_command($imapConnection, $ss, true, $result, $message); + $readin = sqimap_run_command($imapConnection, $ss, false, $result, $message); /* try US-ASCII charset if search fails */ if (isset($languages[$squirrelmail_language]['CHARSET']) -- 2.25.1