summaryrefslogtreecommitdiffstats
path: root/app/views/users
diff options
context:
space:
mode:
authorEtienne Massip <etienne.massip@gmail.com>2011-10-02 18:45:17 +0000
committerEtienne Massip <etienne.massip@gmail.com>2011-10-02 18:45:17 +0000
commit4ecd65c4658cddc3ebf0e975d93c975fcfdaf764 (patch)
tree7246ea9482f3dccf3838bb4ac0fefd5b5c2ef93f /app/views/users
parent65b533a8ec1f4d53a082cdc76324f65147d6f6b1 (diff)
downloadredmine-4ecd65c4658cddc3ebf0e975d93c975fcfdaf764.tar.gz
redmine-4ecd65c4658cddc3ebf0e975d93c975fcfdaf764.zip
Remove unecessary page title HTML escaping from views (#9252).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7565 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/users')
-rw-r--r--app/views/users/edit.html.erb2
-rw-r--r--app/views/users/show.html.erb2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/users/edit.html.erb b/app/views/users/edit.html.erb
index 817056367..0c5883e8b 100644
--- a/app/views/users/edit.html.erb
+++ b/app/views/users/edit.html.erb
@@ -8,4 +8,4 @@
<%= render_tabs user_settings_tabs %>
-<% html_title(l(:label_user), h(@user.login), l(:label_administration)) -%>
+<% html_title(l(:label_user), @user.login, l(:label_administration)) -%>
diff --git a/app/views/users/show.html.erb b/app/views/users/show.html.erb
index 8c0aa6111..4ff40aa1c 100644
--- a/app/views/users/show.html.erb
+++ b/app/views/users/show.html.erb
@@ -67,4 +67,4 @@
<%= call_hook :view_account_right_bottom, :user => @user %>
</div>
-<% html_title h(@user.name) %>
+<% html_title @user.name %>