diff --git a/app/views/news/index.html.erb b/app/views/news/index.html.erb
index fc98a5349..d4c032689 100644
--- a/app/views/news/index.html.erb
+++ b/app/views/news/index.html.erb
@@ -28,7 +28,7 @@
<%= l(:label_no_data) %>
<% else %>
<% @newss.each do |news| %>
- <%= link_to_project(news.project) + ': ' unless news.project == @project %>
+ <%= avatar(news.author, :size => "24") %><%= link_to_project(news.project) + ': ' unless news.project == @project %>
<%= link_to h(news.title), news_path(news) %>
<%= "(#{l(:label_x_comments, :count => news.comments_count)})" if news.comments_count > 0 %>
<%= authoring news.created_on, news.author %>