diff options
Diffstat (limited to 'app/views/my/account.rhtml')
-rw-r--r-- | app/views/my/account.rhtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/my/account.rhtml b/app/views/my/account.rhtml index 61a44f095..09a43b468 100644 --- a/app/views/my/account.rhtml +++ b/app/views/my/account.rhtml @@ -29,7 +29,7 @@ <div class="box">
<h3><%=l(:field_password)%></h3>
- <%= start_form_tag({:action => 'change_password'}, :class => "tabular") %> + <% form_tag({:action => 'change_password'}, :class => "tabular") do %> <p><label for="password"><%=l(:field_password)%> <span class="required">*</span></label> <%= password_field_tag 'password', nil, :size => 25 %></p> @@ -41,6 +41,6 @@ <%= password_field_tag 'new_password_confirmation', nil, :size => 25 %></p>
<center><%= submit_tag l(:button_save) %></center> - <%= end_form_tag %>
+ <% end %>
</div> <% end %>
|