Skip to content

Commit

Permalink
Fixed issue #7239: Adding a new user without full name is impossible
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Jan 31, 2013
1 parent 34d651e commit 69a3e46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/models/User.php
Expand Up @@ -59,7 +59,7 @@ public function primaryKey()
public function rules()
{
return array(
array('users_name, password, email, full_name', 'required'),
array('users_name, password, email', 'required'),
array('email', 'email'),
);
}
Expand Down

0 comments on commit 69a3e46

Please sign in to comment.