I have a problem due to scopes and the form_for helper in rails 3. The routes - file looks like this:
scope \"(/:tab)\" do resources :article end
You could specify the path explicitly:
<%= form_for(@article, :url => article_path(@article, :tab => params[:tab]) %>