diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-12-10 21:28:30 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-12-10 21:28:30 +0000 |
commit | 8be46ff0b2f9de43f29f7983616ba3eef2846c44 (patch) | |
tree | 388f9315723b08737f58426a9db4018ef9ef9011 | |
parent | 10e3045d8ae6e7a645cffcf1b3c0fcbb759cb913 (diff) | |
download | redmine-8be46ff0b2f9de43f29f7983616ba3eef2846c44.tar.gz redmine-8be46ff0b2f9de43f29f7983616ba3eef2846c44.zip |
Removed double dash.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8186 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/timelog/bulk_edit.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/timelog/bulk_edit.html.erb b/app/views/timelog/bulk_edit.html.erb index a93e39238..9496e8c41 100644 --- a/app/views/timelog/bulk_edit.html.erb +++ b/app/views/timelog/bulk_edit.html.erb @@ -1,6 +1,6 @@ <h2><%= l(:label_bulk_edit_selected_time_entries) %></h2> -<ul><%= @time_entries.collect {|i| content_tag('li', link_to(h("#{i.spent_on.strftime("%Y-%m-%d")} -- #{i.project}: #{l(:label_f_hour_plural, :value => i.hours)}"), { :action => 'edit', :id => i }))} %></ul> +<ul><%= @time_entries.collect {|i| content_tag('li', link_to(h("#{i.spent_on.strftime("%Y-%m-%d")} - #{i.project}: #{l(:label_f_hour_plural, :value => i.hours)}"), { :action => 'edit', :id => i }))} %></ul> <% form_tag(:action => 'bulk_update') do %> <%= @time_entries.collect {|i| hidden_field_tag('ids[]', i.id)}.join %> |