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