From 6d48430bd71aefc1f1aa23c62c6241b00cd4b60d Mon Sep 17 00:00:00 2001 From: jangliss Date: Mon, 21 Nov 2005 23:13:34 +0000 Subject: [PATCH] Remove lines as Thijs has removed the function entirely. git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@10396 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/imap_asearch.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/functions/imap_asearch.php b/functions/imap_asearch.php index 47d12eb8..1f3176b7 100644 --- a/functions/imap_asearch.php +++ b/functions/imap_asearch.php @@ -313,13 +313,11 @@ function sqimap_run_search($imapConnection, $search_string, $search_charset) $query = 'SEARCH CHARSET "' . strtoupper($search_charset) . '" ' . $search_string; else $query = 'SEARCH ' . $search_string; -// s_debug_dump('C:', $query); $readin = sqimap_run_command($imapConnection, $query, false, $response, $message, TRUE); /* 6.4.4 try US-ASCII charset if we tried an OPTIONAL [CHARSET] and received a tagged NO response (SHOULD be [BADCHARSET]) */ if (($search_charset != '') && (strtoupper($response) == 'NO')) { $query = 'SEARCH CHARSET US-ASCII ' . $search_string; -// s_debug_dump('C:', $query); $readin = sqimap_run_command($imapConnection, $query, false, $response, $message, TRUE); } if (strtoupper($response) != 'OK') { -- 2.25.1