On 11 March 2011 15:13, Paul Bergstrom <[email protected]> wrote: > How can I add incoming params, from a request.post, in a redirect_to? > Something like: > > redirect_to :action => 'new', params[:user]
You need to specify what it is that you want to set to params[:user], so I guess you want something like redirect_to :action => 'new', :user => params[:user] Colin -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" 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/rubyonrails-talk?hl=en.

