diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-07-30 11:27:47 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2011-07-30 11:27:47 +0000 |
commit | 8ba74845bc9f959fe05e17c559d572c0ec1dbaff (patch) | |
tree | dcd48ec85745bf567cfe09e11543e3054d59e7c2 /app/views/context_menus | |
parent | 40692c10cf22c71ef44be6706f5c8405d0f9478e (diff) | |
download | redmine-8ba74845bc9f959fe05e17c559d572c0ec1dbaff.tar.gz redmine-8ba74845bc9f959fe05e17c559d572c0ec1dbaff.zip |
Fixes wrong string.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6331 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/context_menus')
-rw-r--r-- | app/views/context_menus/time_entries.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/context_menus/time_entries.html.erb b/app/views/context_menus/time_entries.html.erb index fc665487a..d1f20b111 100644 --- a/app/views/context_menus/time_entries.html.erb +++ b/app/views/context_menus/time_entries.html.erb @@ -17,7 +17,7 @@ <li><%= context_menu_link h(u.name), {:controller => 'timelog', :action => 'bulk_edit', :ids => @time_entries.collect(&:id), :time_entry => {'activity_id' => u}, :back_url => @back}, :method => :post, :selected => (@time_entry && u == @time_entry.activity), :disabled => !@can[:update] %></li> <% end -%> - <li><%= context_menu_link l(:label_nobody), {:controller => 'timelog', :action => 'bulk_edit', :ids => @time_entries.collect(&:id), :time_entry => {'activity_id' => 'none'}, :back_url => @back}, :method => :post, + <li><%= context_menu_link l(:label_none), {:controller => 'timelog', :action => 'bulk_edit', :ids => @time_entries.collect(&:id), :time_entry => {'activity_id' => 'none'}, :back_url => @back}, :method => :post, :selected => (@time_entry && @time_entry.activity.nil?), :disabled => !@can[:update] %></li> </ul> </li> |