diff --git a/app/views/content_viewer/_comment.rhtml b/app/views/content_viewer/_comment.rhtml
index a981791..323d5a6 100644
--- a/app/views/content_viewer/_comment.rhtml
+++ b/app/views/content_viewer/_comment.rhtml
@@ -1,10 +1,5 @@
<%= content_tag('a', '', :name => comment.anchor) %>
- <% if logged_in? && (user == @page.profile || user == comment.author || user.has_permission?(:moderate_comments, @page.profile)) %>
- <% button_bar(:style => 'float: right; margin-top: 0;') do %>
- <%= icon_button(:delete, _('Remove'), { :profile => params[:profile], :remove_comment => comment.id }, :method => :post, :confirm => _('Are you sure you want to remove this comment?')) %>
- <% end %>
- <% end %>
<% if comment.author %>
<%= link_to content_tag( 'span', comment.author.name() ), comment.author.url,
@@ -19,12 +14,18 @@
%>
<% end %>
+ <% if logged_in? && (user == @page.profile || user == comment.author || user.has_permission?(:moderate_comments, @page.profile)) %>
+ <% button_bar(:style => 'float: right; margin-top: 0;') do %>
+ <%= icon_button(:delete, _('Remove'), { :profile => params[:profile], :remove_comment => comment.id }, :method => :post, :confirm => _('Are you sure you want to remove this comment?')) %>
+ <% end %>
+ <% end %>
+
<%= comment.title %>
' + _('(unauthenticated user)') if ! comment.author %> + <%= _('(unauthenticated user)') if ! comment.author %>