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/workflows/permissions.html.erb | |
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/workflows/permissions.html.erb')
-rw-r--r-- | app/views/workflows/permissions.html.erb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/workflows/permissions.html.erb b/app/views/workflows/permissions.html.erb index 2c529864e..7b4b3f840 100644 --- a/app/views/workflows/permissions.html.erb +++ b/app/views/workflows/permissions.html.erb @@ -47,7 +47,7 @@ <td></td> <% for status in @statuses %> <td style="width:<%= 75 / @statuses.size %>%;"> - <%=h status.name %> + <%= status.name %> </td> <% end %> </tr> @@ -62,7 +62,7 @@ <% @fields.each do |field, name| %> <tr class="<%= cycle("odd", "even") %>"> <td class="name"> - <%=h name %> <%= content_tag('span', '*', :class => 'required') if field_required?(field) %> + <%= name %> <%= content_tag('span', '*', :class => 'required') if field_required?(field) %> </td> <% for status in @statuses -%> <td class="<%= @permissions[status.id][field] %>"> @@ -82,7 +82,7 @@ <% @custom_fields.each do |field| %> <tr class="<%= cycle("odd", "even") %>"> <td class="name"> - <%=h field.name %> <%= content_tag('span', '*', :class => 'required') if field_required?(field) %> + <%= field.name %> <%= content_tag('span', '*', :class => 'required') if field_required?(field) %> </td> <% for status in @statuses -%> <td class="<%= @permissions[status.id][field.id.to_s] %>"> |