From b2f0c5f91db06d1dda9b4d83f01878d6dd6cce49 Mon Sep 17 00:00:00 2001 From: jangliss Date: Mon, 21 Nov 2005 22:54:05 +0000 Subject: [PATCH] Who left their debugging code in here? git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@10395 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- functions/imap_asearch.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions/imap_asearch.php b/functions/imap_asearch.php index 0c5ce91c..47d12eb8 100644 --- a/functions/imap_asearch.php +++ b/functions/imap_asearch.php @@ -313,13 +313,13 @@ 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); +// 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); +// s_debug_dump('C:', $query); $readin = sqimap_run_command($imapConnection, $query, false, $response, $message, TRUE); } if (strtoupper($response) != 'OK') { -- 2.25.1