##// END OF EJS Templates
Rails3: view: use explicit post method at my/account.html.erb...
Toshi MARUYAMA -
r8361:737655cebc51
parent child
Show More
@@ -6,8 +6,10
6 <h2><%=l(:label_my_account)%></h2>
6 <h2><%=l(:label_my_account)%></h2>
7 <%= error_messages_for 'user' %>
7 <%= error_messages_for 'user' %>
8
8
9 <% labelled_form_for :user, @user, :url => { :action => "account" },
9 <% labelled_form_for :user, @user,
10 :html => { :id => 'my_account_form' } do |f| %>
10 :url => { :action => "account" },
11 :html => { :id => 'my_account_form',
12 :method => :post } do |f| %>
11 <div class="splitcontentleft">
13 <div class="splitcontentleft">
12 <fieldset class="box tabular">
14 <fieldset class="box tabular">
13 <legend><%=l(:label_information_plural)%></legend>
15 <legend><%=l(:label_information_plural)%></legend>
General Comments 0
You need to be logged in to leave comments. Login now