diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-08-10 07:07:43 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2006-08-10 07:07:43 +0000 |
| commit | b4380c08374a6ad23bfe8807b232a2d2153c880a (patch) | |
| tree | d0b36cf25e20cb1460ef50a66642c036f1023614 /roundcubemail/program/steps/mail | |
| parent | c49455c3eeae051c75540ad59829849102d36864 (diff) | |
Fixed charset problems with folder renaming
git-svn-id: https://svn.roundcube.net/trunk@305 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/mail')
| -rw-r--r-- | roundcubemail/program/steps/mail/search.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roundcubemail/program/steps/mail/search.inc b/roundcubemail/program/steps/mail/search.inc index 517ef3008..e1690ee63 100644 --- a/roundcubemail/program/steps/mail/search.inc +++ b/roundcubemail/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); |
