diff options
author | alecpl <alec@alec.pl> | 2011-06-02 12:24:22 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2011-06-02 12:24:22 +0000 |
commit | d654e80084011ea85958de67a942c9552032bbee (patch) | |
tree | 7a3db8caa6538a3b5c27c0aec1a0b2b74722d128 | |
parent | fde361eb5827c1598404001cd26dee50aae3e037 (diff) |
- Fix identities "reply-to" and "bcc" fields have a bogus value when left empty (#1487943)
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | program/include/main.inc | 4 |
2 files changed, 5 insertions, 0 deletions
@@ -1,6 +1,7 @@ CHANGELOG Roundcube Webmail =========================== +- Fix identities "reply-to" and "bcc" fields have a bogus value when left empty (#1487943) - Add popup with basic fields selection for addressbook search - Case-insensitive matching in autocompletion (#1487933) - Added option to force spellchecking before sending a message (#1485458) diff --git a/program/include/main.inc b/program/include/main.inc index c312df547..ab529d74b 100644 --- a/program/include/main.inc +++ b/program/include/main.inc @@ -1809,6 +1809,10 @@ function rcube_idn_convert($input, $is_utf=false) $domain = $is_utf ? idn_to_ascii($domain) : idn_to_utf8($domain); + if ($domain === false) { + return ''; + } + return $at ? $user . '@' . $domain : $domain; } |