diff options
author | alecpl <alec@alec.pl> | 2009-03-06 20:58:32 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2009-03-06 20:58:32 +0000 |
commit | abb7450380a14763c215849e05d5491816eee243 (patch) | |
tree | d743b69d8b202c14743f9cffde63605e0e4c22ac /program | |
parent | ec74645d46b205b83e51c061b2a48af21d898d26 (diff) |
- use US-ASCII as failover also for SORT command (when used for searching)
Diffstat (limited to 'program')
-rw-r--r-- | program/include/rcube_imap.php | 2 |
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); |