summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--templates/chimere/edit.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/chimere/edit.html b/templates/chimere/edit.html
index 23df7aa..ff37398 100644
--- a/templates/chimere/edit.html
+++ b/templates/chimere/edit.html
@@ -197,7 +197,7 @@
var input_id = validation[idx];
var selec = '[name=' + input_id + ']';
var val = jQuery(selec).val();
- if (!val || val == '0' ||
+ if (!val || val == '0' || val == '' || val == 'None' ||
(input_id == 'id_submiter_email' &&
!isValidEmailAddress(val))){
jQuery(selec).parent().addClass('warning');