diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-02-23 10:11:08 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2015-02-23 10:11:08 +0000 |
commit | b778c51e9049ca2c0d745a699db6d93d53b71175 (patch) | |
tree | 8608956d05f884b557ea3451bead74a4dc9441f0 /app/views/versions | |
parent | ec201b08b3cfd1e115704abdbd7bc541a3651fe1 (diff) | |
download | redmine-b778c51e9049ca2c0d745a699db6d93d53b71175.tar.gz redmine-b778c51e9049ca2c0d745a699db6d93d53b71175.zip |
Removed unneeded #h calls in views.
git-svn-id: http://svn.redmine.org/redmine/trunk@14043 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/versions')
-rw-r--r-- | app/views/versions/_issue_counts.html.erb | 2 | ||||
-rw-r--r-- | app/views/versions/show.html.erb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/versions/_issue_counts.html.erb b/app/views/versions/_issue_counts.html.erb index 951cc0186..7d9652250 100644 --- a/app/views/versions/_issue_counts.html.erb +++ b/app/views/versions/_issue_counts.html.erb @@ -15,7 +15,7 @@ <tr> <td style="width:130px; text-align:right;"> <% if count[:group] -%> - <%= link_to(h(count[:group]), project_issues_path(version.project, :set_filter => 1, :status_id => '*', :fixed_version_id => version, "#{criteria}_id" => count[:group])) %> + <%= link_to(count[:group], project_issues_path(version.project, :set_filter => 1, :status_id => '*', :fixed_version_id => version, "#{criteria}_id" => count[:group])) %> <% else -%> <%= link_to(l(:label_none), project_issues_path(version.project, :set_filter => 1, :status_id => '*', :fixed_version_id => version, "#{criteria}_id" => "!*")) %> <% end %> diff --git a/app/views/versions/show.html.erb b/app/views/versions/show.html.erb index fdbec6ff6..d05729e51 100644 --- a/app/views/versions/show.html.erb +++ b/app/views/versions/show.html.erb @@ -5,7 +5,7 @@ <%= call_hook(:view_versions_show_contextual, { :version => @version, :project => @project }) %> </div> -<h2><%= h(@version.name) %></h2> +<h2><%= @version.name %></h2> <div id="roadmap"> <%= render :partial => 'versions/overview', :locals => {:version => @version} %> |