Hello,
I've been spending about 2 hours trying to figure out how to implement
something like this.
I have the following tables:
Make: id, name
Model: id, name, make_id
In the admin backend, on the makes list, I want for each Make entry, a
list to all Models for that make
this:
public function executeListViewModels(sfWebRequest $request){
$make = $this->getRoute()->getObject();
$this->redirect("model/filter?model_filters[_csrf_token]=".
sfForm::getCSRFToken() ."&model_filters[make_id]=".$make->getId());
}
gives me: CSRF attack detected
Can anyone help me?
--
You received this message because you are subscribed to the Google Groups
"symfony users" 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/symfony-users?hl=en.