My form_tag looks like:
<%= form_tag(:controller => "users", :action => "confirm", :method => "get") %>
the html output is:
<form accept-charset="UTF-8" action="/users/confirm?method=get" method="post">
Why is it doing this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I think it’s because when used in this form it assumes all of the options are url options. Try.
In this case you have two separate sets of options, url options and tag options.