]> source.dussan.org Git - redmine.git/commitdiff
Fixed: logtime entry duplicated when edited from parent project (#1728).
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 3 Aug 2008 09:27:27 +0000 (09:27 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 3 Aug 2008 09:27:27 +0000 (09:27 +0000)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1713 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/views/timelog/_list.rhtml

index 189f4f5e820a4feaeef56534a949f423ab907e67..8aebd75de8d923f2667cc637f85129044888fc60 100644 (file)
@@ -27,9 +27,9 @@
 <td class="hours"><%= html_hours("%.2f" % entry.hours) %></td>
 <td align="center">
 <% if entry.editable_by?(User.current) -%>
-    <%= link_to image_tag('edit.png'), {:controller => 'timelog', :action => 'edit', :id => entry},
+    <%= link_to image_tag('edit.png'), {:controller => 'timelog', :action => 'edit', :id => entry, :project_id => nil},
                                        :title => l(:button_edit) %>
-    <%= link_to image_tag('delete.png'), {:controller => 'timelog', :action => 'destroy', :id => entry},
+    <%= link_to image_tag('delete.png'), {:controller => 'timelog', :action => 'destroy', :id => entry, :project_id => nil},
                                          :confirm => l(:text_are_you_sure),
                                          :method => :post,
                                          :title => l(:button_delete) %>