summaryrefslogtreecommitdiff
path: root/roundcubemail/program/steps/addressbook
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-02-04 13:44:47 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-02-04 13:44:47 +0000
commit5e3878adc1f038a778df58cd468b33b9f08972f9 (patch)
treef8415f2ee86c1b77d080ea089fab2c73686483b2 /roundcubemail/program/steps/addressbook
parent515f85f0f83f8af312d801fd792e5cae4493604b (diff)
- Fix email_dns_check setting not used for identities/contacts (#1487740)
git-svn-id: https://svn.roundcube.net/trunk@4494 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/addressbook')
-rw-r--r--roundcubemail/program/steps/addressbook/save.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/steps/addressbook/save.inc b/roundcubemail/program/steps/addressbook/save.inc
index 934db4c73..3d55d953c 100644
--- a/roundcubemail/program/steps/addressbook/save.inc
+++ b/roundcubemail/program/steps/addressbook/save.inc
@@ -143,7 +143,7 @@ if (empty($a_record['name'])/* || empty($a_record['email'])*/) {
foreach ($CONTACTS->get_col_values('email', $a_record, true) as $email) {
if (strlen($email)) {
$_email = rcube_idn_to_ascii($email);
- if (!check_email($_email, false)) {
+ if (!check_email($_email)) {
$OUTPUT->show_message('emailformaterror', 'warning', array('email' => $email));
rcmail_overwrite_action($return_action);
return;