passwords can now contain spaces

v1.18.x
psychobunny 11 years ago
parent 6a4bcf8ab8
commit 4384958bf2

@ -139,7 +139,7 @@
},
isPasswordValid: function(password) {
return typeof password === 'string' && password.length && password.indexOf(' ') === -1;
return typeof password === 'string' && password.length;
},
isNumber: function(n) {

Loading…
Cancel
Save