summaryrefslogtreecommitdiff
path: root/program/steps/mail/search.inc
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2006-08-10 07:07:43 +0000
committerthomascube <thomas@roundcube.net>2006-08-10 07:07:43 +0000
commit4d4264cdcd0faa510d256637e7b3d0ab9b4d4646 (patch)
tree9d96fe7384579e76eccfa6f24e68445417b39d50 /program/steps/mail/search.inc
parentc0e9128e6c4b60ca5f283570cec366229f946435 (diff)
Fixed charset problems with folder renaming
Diffstat (limited to 'program/steps/mail/search.inc')
-rw-r--r--program/steps/mail/search.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/program/steps/mail/search.inc b/program/steps/mail/search.inc
index 517ef3008..e1690ee63 100644
--- a/program/steps/mail/search.inc
+++ b/program/steps/mail/search.inc
@@ -19,9 +19,9 @@ $REMOTE_REQUEST = TRUE;
$IMAP->set_page(1);
$_SESSION['page'] = 1;
-// search query comes in with ISO encoding because javascript escape()
-// uses ISO-8859-1. Better handling for that will follow.
-$imap_charset = 'ISO-8859-1';
+// using encodeURI with javascript "should" give us
+// a correctly UTF-8 encoded query string
+$imap_charset = 'UTF-8';
// get search string
$str = get_input_value('_search', RCUBE_INPUT_GET);