diff options
author | thomascube <thomas@roundcube.net> | 2007-03-14 01:02:03 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2007-03-14 01:02:03 +0000 |
commit | 568ba395b6ca0a5779600a435a9906ae88de6d5f (patch) | |
tree | 4e7e5957632b6eca24bbe8b383b9ac7557c757bb /program/include/rcube_imap.inc | |
parent | 5a6ad209837a8bcca14d4f74541d8ac3ea760341 (diff) |
Applied little patch that closes #1484247
Diffstat (limited to 'program/include/rcube_imap.inc')
-rw-r--r-- | program/include/rcube_imap.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/include/rcube_imap.inc b/program/include/rcube_imap.inc index 7ac51fcc5..f8e9e0a0a 100644 --- a/program/include/rcube_imap.inc +++ b/program/include/rcube_imap.inc @@ -2459,7 +2459,7 @@ class rcube_imap foreach ($a as $key => $val) { - $val = str_replace("\"<", "\" <", $val); + $val = preg_replace("/([\"\w])</", "$1 <", $val); $sub_a = $this->_explode_quoted_string(' ', $this->decode_header($val)); $result[$key]['name'] = ''; |