I'm not sure if I fully understand your problem, but if you are trying 
to save without validating then call save like this:
--------

// Tell the model to save without validating the data
$this->Model->save($this->data, false);

---------

This is a snippet from the Cake API about the model function 
save(...) :

----------

Model::save     (
                $       data = null,
                $       validate = true,
                $       fieldList = array()
        )

Saves model data to the database. By default, validation occurs before 
save.

Parameters:
        array   $data Data to save.
        boolean         $validate If set, validation will be done before the 
save
        array   $fieldList List of fields to allow to be written

----------

You can see that $validate defaults to true.  If you pass in false, 
then the model will not validate.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to cake-php@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to