fix bug in user create form

This commit is contained in:
Sebastian Sdorra
2014-03-15 17:06:52 +01:00
parent bd72a81019
commit d9579c3473

View File

@@ -75,7 +75,7 @@ Ext.apply(Ext.form.VTypes, {
// username validator
username: function(val){
return name(val);
return this.name(val);
},
usernameText: 'The username is invalid.'