Disable form security CakePHP -


is possible turn of cakephp security features 1 particular form in view? don't hidden fields (tokens) in form.

thank you,

bart

you can disable action via:

public function beforefilter() {     parent::beforefilter();     if ($this->request->params['action'] == 'action') {          $this->security->validatepost = false;      }  } 

Comments

Popular posts from this blog

django - How can I change user group without delete record -

java - Need to add SOAP security token -

java - EclipseLink JPA Object is not a known entity type -