Changeset 4828 in subversion


Ignore:
Timestamp:
Jun 2, 2011 8:24:22 AM (2 years ago)
Author:
alec
Message:
  • Fix identities "reply-to" and "bcc" fields have a bogus value when left empty (#1487943)
Location:
trunk/roundcubemail
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/CHANGELOG

    r4823 r4828  
    22=========================== 
    33 
     4- Fix identities "reply-to" and "bcc" fields have a bogus value when left empty (#1487943) 
    45- Add popup with basic fields selection for addressbook search 
    56- Case-insensitive matching in autocompletion (#1487933) 
  • trunk/roundcubemail/program/include/main.inc

    r4827 r4828  
    18101810  $domain = $is_utf ? idn_to_ascii($domain) : idn_to_utf8($domain); 
    18111811 
     1812  if ($domain === false) { 
     1813    return ''; 
     1814  } 
     1815 
    18121816  return $at ? $user . '@' . $domain : $domain; 
    18131817} 
Note: See TracChangeset for help on using the changeset viewer.