Fix #5911 - issue with password
authorAlan Knowles <alan@roojs.com>
Thu, 4 Jul 2019 07:23:43 +0000 (15:23 +0800)
committerAlan Knowles <alan@roojs.com>
Thu, 4 Jul 2019 07:23:43 +0000 (15:23 +0800)
widgets/SecurePass.js

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