cakephp2-php8/cake/libs/controller
phpnut 8be685504e Adding ability to disable specific form data fields from being added to the validation key.
Example of using this would be javascript that changes hidden fields, adding additional fields added using javascript, etc.
This is set in a Controller::beforeFilter().
Example usage:
{{{
$this->Security->disabledFields = array('fieldname', 'additional fields');
$this->Security->disabledFields = array('Model.fieldname', 'OtherModel.fieldname');
}}}

git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@4978 3807eeeb-6ff5-0310-8944-8be069107fe0
2007-05-02 02:31:06 +00:00
..
components Adding ability to disable specific form data fields from being added to the validation key. 2007-05-02 02:31:06 +00:00
component.php Corrected view tests. 2007-03-23 10:34:21 +00:00
controller.php Fixing assigned by reference on php 4, removing reference in Cache::engine() 2007-04-30 09:32:51 +00:00
pages_controller.php Adding fix for Ticket #2349 2007-04-05 16:06:37 +00:00
scaffold.php Adding fix for #2491 fixes bad scaffold templates paths 2007-04-29 02:03:43 +00:00