From 7b3c540bc0b574f82a867a1e6642dad4f9ad475e Mon Sep 17 00:00:00 2001 From: albert Date: Sun, 18 Sep 2011 17:22:34 -0400 Subject: [PATCH] fix for password resets --- app/views/maintenance/user/password_resets/edit.html.erb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/views/maintenance/user/password_resets/edit.html.erb b/app/views/maintenance/user/password_resets/edit.html.erb index e2aaed7b9..0724510d2 100644 --- a/app/views/maintenance/user/password_resets/edit.html.erb +++ b/app/views/maintenance/user/password_resets/edit.html.erb @@ -4,6 +4,8 @@ <% if @nonce %> <%= form_tag(maintenance_user_password_reset_path, :method => :put) do %> + <%= hidden_field_tag :email, params[:email] %> + <%= hidden_field_tag :key, params[:key] %>

Do you wish to reset your password? A new password will be emailed to you.

<%= submit_tag "Reset" %> <% end %>