diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-27 23:40:45 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2011-08-27 23:40:45 +0000 |
commit | ce2fa679c095bab50eb3f2e8a04d64701da24aae (patch) | |
tree | bdacc7e61ef73d13bf78d3db55a3681fdb73f9a2 /app | |
parent | f5356cb94ee261a5abb8e4a4bd458a80cc1847bc (diff) | |
download | redmine-ce2fa679c095bab50eb3f2e8a04d64701da24aae.tar.gz redmine-ce2fa679c095bab50eb3f2e8a04d64701da24aae.zip |
remove trailing white-spaces from app/views/workflows/_form.html.erb.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6678 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app')
-rw-r--r-- | app/views/workflows/_form.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/workflows/_form.html.erb b/app/views/workflows/_form.html.erb index 808fb8e5f..5ff7695e7 100644 --- a/app/views/workflows/_form.html.erb +++ b/app/views/workflows/_form.html.erb @@ -25,13 +25,13 @@ <td> <%= link_to_function(image_tag('toggle_check.png'), "toggleCheckboxesBySelector('table.transitions-#{name} input.old-status-#{old_status.id}')", :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}") %> - + <%=h old_status.name %> </td> <% for new_status in @statuses -%> <td align="center"> <%= check_box_tag "issue_status[#{ old_status.id }][#{new_status.id}][]", name, workflows.detect {|w| w.old_status_id == old_status.id && w.new_status_id == new_status.id}, - :class => "old-status-#{old_status.id} new-status-#{new_status.id}" %> + :class => "old-status-#{old_status.id} new-status-#{new_status.id}" %> </td> <% end -%> </tr> |