diff --git a/app/views/news/_project_show.html.erb b/app/views/news/_project_show.html.erb
index 70fca5e48..7b4c209b0 100644
--- a/app/views/news/_project_show.html.erb
+++ b/app/views/news/_project_show.html.erb
@@ -141,7 +141,7 @@
<%= format_time(comment.created_on) %>
- <%= link_to_if_authorized image_tag('delete.png'), delete_news_comments_path(id: @news, comment: comment),
+ <%= link_to_if_authorized image_tag('delete.png'), {:controller => 'comments', :action => 'destroy', :id => @news, :comment_id => comment},
:data => {:confirm => l(:text_are_you_sure)},
:method => :delete,
:title => l(:button_delete) %>
|