Replace auto_link with link_to in email templates.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8984 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Jean-Philippe Lang 2012-02-24 23:16:59 +00:00
parent 4a6de486ba
commit 7ad40e22fe
4 changed files with 4 additions and 4 deletions

View File

@ -8,4 +8,4 @@
</ul>
<% end %>
<p><%= l(:label_login) %>: <%= auto_link(@login_url).html_safe %></p>
<p><%= l(:label_login) %>: <%= link_to h(@login_url), @login_url %></p>

View File

@ -1,4 +1,4 @@
<p><%= l(:mail_body_lost_password) %><br />
<%= auto_link(@url).html_safe %></p>
<%= link_to h(@url), @url %></p>
<p><%= l(:field_login) %>: <b><%=h @token.user.login %></b></p>

View File

@ -1,2 +1,2 @@
<p><%= l(:mail_body_register) %><br />
<%= auto_link(@url).html_safe %></p>
<%= link_to h(@url), @url %></p>

View File

@ -1,2 +1,2 @@
<p>This is a test email sent by Redmine.<br />
Redmine URL: <%= auto_link(@url).html_safe %></p>
Redmine URL: <%= link_to h(@url), @url %></p>