Ignore:
Timestamp:
Nov 22, 2006 6:49:30 AM (6 years ago)
Author:
thomasb
Message:

Remove newlines from mail headers (#1484031)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/program/include/rcube_imap.inc

    r336 r384  
    23782378  function _parse_address_list($str) 
    23792379    { 
    2380     $a = $this->_explode_quoted_string(',', $str); 
     2380    // remove any newlines and carriage returns before 
     2381    $a = $this->_explode_quoted_string(',', preg_replace( "/[\r\n]/", " ", $str)); 
    23812382    $result = array(); 
    23822383     
Note: See TracChangeset for help on using the changeset viewer.