Commit acebceb1 authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

Applied 'register notice' patch by Matt Jones.

The user is now redirected to the login screen after having registered.

git-svn-id: http://redmine.rubyforge.org/svn/trunk@601 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent 2d5ac54d
...@@ -135,7 +135,7 @@ class AccountController < ApplicationController ...@@ -135,7 +135,7 @@ class AccountController < ApplicationController
if @user.save and token.save if @user.save and token.save
Mailer.deliver_register(token) Mailer.deliver_register(token)
flash[:notice] = l(:notice_account_register_done) flash[:notice] = l(:notice_account_register_done)
redirect_to :controller => 'welcome' and return redirect_to :controller => 'account', :action => 'login'
end end
end end
end end
......
...@@ -56,7 +56,7 @@ notice_account_updated: Account was successfully updated. ...@@ -56,7 +56,7 @@ notice_account_updated: Account was successfully updated.
notice_account_invalid_creditentials: Invalid user or password notice_account_invalid_creditentials: Invalid user or password
notice_account_password_updated: Password was successfully updated. notice_account_password_updated: Password was successfully updated.
notice_account_wrong_password: Wrong password notice_account_wrong_password: Wrong password
notice_account_register_done: Account was successfully created. notice_account_register_done: Account was successfully created. To activate your account, click on the link that was emailed to you.
notice_account_unknown_email: Unknown user. notice_account_unknown_email: Unknown user.
notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password. notice_can_t_change_password: This account uses an external authentication source. Impossible to change the password.
notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you. notice_account_lost_email_sent: An email with instructions to choose a new password has been sent to you.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment