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 symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.

Reply via email to