Hi awesome Cake developers,
Having a problem with validate in 1.2.
Something in the last portion of this $validate definition is kicking
out an error:
var $validate = array(
'name' => array(
'alphaNumeric'=>array(
'rule'=>'alphaNumeric',
'required'=>true,
'message'=>'The Title may not contain any
symbols'
),
'maxLength'=>array(
'rule'=>array('maxlength',80),
'message'=>'The Title may not exceed 80
characters'
)
),
'date' => array(
'date'=>array(
'rule'=>'date',
'required'=>true,
'message'=>'You must provide a valid date'
)
),
'content' => array(
'required' => true
)
);
The error is:
Warning (2): preg_match() [function.preg-match]: Delimiter must not be
alphanumeric or backslash [CORE/cake/libs/model/model.php, line 2269]
However, if I add another rule (i.e. alphaNumeric) to the content, no
error.
Any ideas?
Thank you.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---