summaryrefslogtreecommitdiffstats
path: root/app/views/issues
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/issues
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/issues')
-rw-r--r--app/views/issues/index.html.erb2
-rw-r--r--app/views/issues/show.html.erb2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/issues/index.html.erb b/app/views/issues/index.html.erb
index 87925e519..4c2caa7ff 100644
--- a/app/views/issues/index.html.erb
+++ b/app/views/issues/index.html.erb
@@ -6,7 +6,7 @@
</div>
<h2><%= @query.new_record? ? l(:label_issue_plural) : h(@query.name) %></h2>
-<% html_title(@query.new_record? ? l(:label_issue_plural) : h(@query.name)) %>
+<% html_title(@query.new_record? ? l(:label_issue_plural) : @query.name) %>
<% form_tag({ :controller => 'issues', :action => 'index', :project_id => @project }, :method => :get, :id => 'query_form') do %>
<%= hidden_field_tag 'set_filter', '1' %>
diff --git a/app/views/issues/show.html.erb b/app/views/issues/show.html.erb
index 1a7459347..491966b22 100644
--- a/app/views/issues/show.html.erb
+++ b/app/views/issues/show.html.erb
@@ -113,7 +113,7 @@
<%= f.link_to 'PDF' %>
<% end %>
-<% html_title h("#{@issue.tracker.name} ##{@issue.id}: #{@issue.subject}") %>
+<% html_title "#{@issue.tracker.name} ##{@issue.id}: #{@issue.subject}" %>
<% content_for :sidebar do %>
<%= render :partial => 'issues/sidebar' %>