summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-03-06 20:58:32 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2009-03-06 20:58:32 +0000
commitfd3d5b20a77ddd1cf9c64cfd32e6687df369b2be (patch)
treea6f7a3b5383621a94d7818add1ee41e1eda78961
parent9a731ae6e77e6bd395a3e092b05f46ce45efb046 (diff)
- use US-ASCII as failover also for SORT command (when used for searching)
git-svn-id: https://svn.roundcube.net/trunk@2335 208e9e7b-5314-0410-a742-e7e81cd9613c
-rw-r--r--roundcubemail/program/include/rcube_imap.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_imap.php b/roundcubemail/program/include/rcube_imap.php
index dbae4e83a..637e25b92 100644
--- a/roundcubemail/program/include/rcube_imap.php
+++ b/roundcubemail/program/include/rcube_imap.php
@@ -978,7 +978,7 @@ class rcube_imap
else // strings for conversion not found
$res = $str;
- $results = $this->search($mbox_name, $res, '', $sort_field);
+ $results = $this->search($mbox_name, $res, 'US-ASCII', $sort_field);
}
$this->set_search_set($str, $results, $charset, $sort_field);