summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralecpl <alec@alec.pl>2009-03-06 20:58:32 +0000
committeralecpl <alec@alec.pl>2009-03-06 20:58:32 +0000
commitabb7450380a14763c215849e05d5491816eee243 (patch)
treed743b69d8b202c14743f9cffde63605e0e4c22ac
parentec74645d46b205b83e51c061b2a48af21d898d26 (diff)
- use US-ASCII as failover also for SORT command (when used for searching)
-rw-r--r--program/include/rcube_imap.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_imap.php b/program/include/rcube_imap.php
index dbae4e83a..637e25b92 100644
--- a/program/include/rcube_imap.php
+++ b/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);