Changeset 2760 in subversion


Ignore:
Timestamp:
Jul 17, 2009 3:41:12 AM (4 years ago)
Author:
alec
Message:
  • fix bug in rcube_config::header_delimiter()
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/program/include/rcube_config.php

    r2665 r2760  
    238238    if (!empty($this->prop['mail_header_delimiter'])) 
    239239      return $this->prop['mail_header_delimiter']; 
    240     else if (strtolower(substr(PHP_OS, 0, 3) == 'win')) 
     240    else if (strtolower(substr(PHP_OS, 0, 3)) == 'win') 
    241241      return "\r\n"; 
    242     else if (strtolower(substr(PHP_OS, 0, 3) == 'mac')) 
     242    else if (strtolower(substr(PHP_OS, 0, 3)) == 'mac') 
    243243      return "\r\n"; 
    244244    else 
Note: See TracChangeset for help on using the changeset viewer.