##// END OF EJS Templates
HTML escape....
Jean-Philippe Lang -
r6210:40692c10cf22
parent child
Show More
@@ -14,7 +14,7
14 <a href="#" class="submenu"><%= l(:field_activity) %></a>
14 <a href="#" class="submenu"><%= l(:field_activity) %></a>
15 <ul>
15 <ul>
16 <% @activities.each do |u| -%>
16 <% @activities.each do |u| -%>
17 <li><%= context_menu_link u.name, {:controller => 'timelog', :action => 'bulk_edit', :ids => @time_entries.collect(&:id), :time_entry => {'activity_id' => u}, :back_url => @back}, :method => :post,
17 <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,
18 :selected => (@time_entry && u == @time_entry.activity), :disabled => !@can[:update] %></li>
18 :selected => (@time_entry && u == @time_entry.activity), :disabled => !@can[:update] %></li>
19 <% end -%>
19 <% end -%>
20 <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,
20 <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,
General Comments 0
You need to be logged in to leave comments. Login now