fix match for bad chars
authorAlan Knowles <alan@roojs.com>
Wed, 30 Dec 2020 06:35:50 +0000 (14:35 +0800)
committerAlan Knowles <alan@roojs.com>
Wed, 30 Dec 2020 06:35:50 +0000 (14:35 +0800)
widgets/SecurePass.js

index 8190c7d..732db5b 100644 (file)
@@ -179,7 +179,7 @@ Ext.extend(Ext.form.SecurePass, Ext.form.TextField, {
             return true;
         }
         
-        if (value.match(/[\x21-\x7e]*/)) {
+        if (!value.match(/[\x21-\x7e]+/)) {
             this.markInvalid(this.errors.PwdBadChar);
             return false;
         }