diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-04-28 09:38:07 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-04-28 09:38:07 +0200 |
commit | 54185837c83bf93ff2d971b986ac13530c1e840b (patch) | |
tree | 16e992320a0eed5a508a8c9d16420358105aca50 /program/js | |
parent | b34d67907566663ab46b487b99817673ce4e32e5 (diff) |
Make identity name field optional (#1489510)
Get rid of unhelpful error message.
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/app.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/program/js/app.js b/program/js/app.js index 2451a6d3d..968e63908 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -857,9 +857,9 @@ function rcube_webmail() else if (this.task == 'settings' && (this.env.identities_level % 2) == 0 && (input = $("input[name='_email']", form)) && input.length && !rcube_check_email(input.val()) ) { - alert(this.get_label('noemailwarning')); +// alert(this.get_label('noemailwarning')); input.focus(); - break; +// break; } // clear empty input fields |