From d8fd52471ce65d1a71e51173d778eddd52573d3f Mon Sep 17 00:00:00 2001 From: thomasb Date: Wed, 22 Nov 2006 11:49:30 +0000 Subject: Remove newlines from mail headers (#1484031) git-svn-id: https://svn.roundcube.net/trunk@384 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/include/rcube_imap.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/roundcubemail/program/include/rcube_imap.inc b/roundcubemail/program/include/rcube_imap.inc index c4dfd2023..fafef6791 100644 --- a/roundcubemail/program/include/rcube_imap.inc +++ b/roundcubemail/program/include/rcube_imap.inc @@ -2377,7 +2377,8 @@ class rcube_imap function _parse_address_list($str) { - $a = $this->_explode_quoted_string(',', $str); + // remove any newlines and carriage returns before + $a = $this->_explode_quoted_string(',', preg_replace( "/[\r\n]/", " ", $str)); $result = array(); foreach ($a as $key => $val) -- cgit v1.2.3