diff --git a/app/views/news/show.rhtml b/app/views/news/show.rhtml
index 89649273..019a14df 100644
--- a/app/views/news/show.rhtml
+++ b/app/views/news/show.rhtml
@@ -9,6 +9,7 @@
<%=h @news.title %>
+<% if authorize_for('news', 'edit') %>
<% labelled_tabular_form_for :news, @news, :url => { :action => "edit", :id => @news },
:html => { :id => 'news-form' } do |f| %>
@@ -20,10 +21,11 @@
:update => 'preview',
:with => "Form.serialize('news-form')"
}, :accesskey => accesskey(:preview) %> |
-<%= link_to l(:button_cancel), "#", :onclick => 'Element.hide("edit-news")' %>
+<%= link_to l(:button_cancel), "#", :onclick => 'Element.hide("edit-news"); return false;' %>
<% end %>
+<% end %>
<% unless @news.summary.blank? %><%=h @news.summary %>
<% end %>
<%= authoring @news.created_on, @news.author %>