Commit 97f87a510573ca53ca0c7bfeeaead981a01d5422
1 parent
48d4e503
Exists in
master
and in
13 other branches
Fix URL in new user activation code email
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
app/views/user_mailer/activation_code.text.erb
1 | <%= _('Hi, %{recipient}!') % { :recipient => @recipient } %> | 1 | <%= _('Hi, %{recipient}!') % { :recipient => @recipient } %> |
2 | 2 | ||
3 | -<%= word_wrap(_('Welcome to %{environment}! To activate your account, follow the link: %{activation_url}') % { :environment => @environment.name, :activation_url => @url + url_for(:controller => :account, :action => :activate, :activation_code => @activation_code, :redirection => @redirection, :join => @join) }) %> | 3 | +<%= word_wrap(_('Welcome to %{environment}! To activate your account, follow the link: %{activation_url}') % { :environment => @environment.name, :activation_url => url_for(:controller => :account, :action => :activate, :activation_code => @activation_code, :redirection => @redirection, :join => @join) }) %> |
4 | 4 | ||
5 | <%= _("Greetings,") %> | 5 | <%= _("Greetings,") %> |
6 | 6 | ||
7 | -- | 7 | -- |
8 | <%= _('%s team.') % @environment.name %> | 8 | <%= _('%s team.') % @environment.name %> |
9 | -<%= url_for @url %> | 9 | +<%= @url %> |