Tuesday, October 4, 2011

Core validation rules examples

In the cook book there are several examples of core validation rules
like:
var $validate = array(
'title' => array(
'rule' => 'notEmpty',
'message' => 'This field cannot be left blank'
)
);

However this seems to trigger a preg_match validation with
'notEmpty' (which is an invalid pattern). Tested with Cake 1.3.6.

The solution is to pass an array:
'rule' => array('notEmpty'),

Can anyone confirm this? - And if so, is it a bug in the code or in
the documentation?

Regards

Jonathan

--
Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org
Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions.


To unsubscribe from this group, send email to
cake-php+unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/cake-php

No comments: