##// END OF EJS Templates
Prevent mass-assignment when adding/updating an issue category (#10390)....
Prevent mass-assignment when adding/updating an issue category (#10390). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9131 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8864:7ad40e22feb8
r9011:460239d1f9ee
Show More
account_information.html.erb
11 lines | 380 B | text/plain | TextLexer
/ app / views / mailer / account_information.html.erb
Jean-Philippe Lang
Mailer:...
r864 <% if @user.auth_source %>
Jean-Philippe Lang
Escaping in html email templates (#4874)....
r3338 <p><%= l(:mail_body_account_information_external, h(@user.auth_source.name)) %></p>
Jean-Philippe Lang
Mailer:...
r864 <% else %>
<p><%= l(:mail_body_account_information) %>:</p>
<ul>
Jean-Philippe Lang
Escaping in html email templates (#4874)....
r3338 <li><%= l(:field_login) %>: <%=h @user.login %></li>
<li><%= l(:field_password) %>: <%=h @password %></li>
Jean-Philippe Lang
Mailer:...
r864 </ul>
<% end %>
Jean-Philippe Lang
Replace auto_link with link_to in email templates....
r8864 <p><%= l(:label_login) %>: <%= link_to h(@login_url), @login_url %></p>