diff --git a/app/views/content_viewer/_comment.rhtml b/app/views/content_viewer/_comment.rhtml
index 5827f61..8e8aee3 100644
--- a/app/views/content_viewer/_comment.rhtml
+++ b/app/views/content_viewer/_comment.rhtml
@@ -1,14 +1,17 @@
-
- <%= link_to content_tag( 'span', comment.author.name() ), comment.author.url,
- :class => 'comment-picture',
- :style => 'background-image:url(%s)' % profile_icon(comment.author, :minor) %>
+
+ <% if comment.author %>
+ <%= link_to content_tag( 'span', comment.author.name() ), comment.author.url,
+ :class => 'comment-picture',
+ :style => 'background-image:url(%s)' % profile_icon(comment.author, :minor) %>
+ <% else %>
+ <%# unauthenticated user: display default icon %>
+ <%= content_tag('span', ' ', :class => 'comment-picture', :style => 'background-image: url(/images/icons-app/user_icon_size-minor.png)' )%>
+ <% end %>
+
<%= comment.title %>
<%= comment.title %>