[Web] Allow empty bcc when saving quarantine settings, fixes #3363
parent
a1156c38fc
commit
dd0c1438de
|
@ -103,7 +103,7 @@ $(document).ready(function() {
|
|||
$(this).removeClass('inputMissingAttr');
|
||||
}
|
||||
}
|
||||
if ($(this).attr("type") == 'email') {
|
||||
if ($(this).val() && $(this).attr("type") == 'email') {
|
||||
if (!validateEmail($(this).val())) {
|
||||
invalid = true;
|
||||
$(this).addClass('inputMissingAttr');
|
||||
|
|
Loading…
Reference in New Issue