Changeset d04d202 in github


Ignore:
Timestamp:
Nov 22, 2006 6:49:30 AM (7 years ago)
Author:
thomascube <thomas@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
0a020ca
Parents:
086377c
Message:

Remove newlines from mail headers (#1484031)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • program/include/rcube_imap.inc

    r2f2f15b rd04d202  
    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.