fix: Fixed an obviously dumb validation rule, fixes #2394

- derp
pull/2405/head
iglocska 2017-08-17 14:13:30 +02:00
parent 50a3d78c81
commit e0de52a534
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ class User extends AppModel {
),
'newsread' => array(
'boolean' => array(
'rule' => array('boolean')
'rule' => array('numeric')
),
),
);