diff --git a/app/views/repositories/_dir_list_content.rhtml b/app/views/repositories/_dir_list_content.rhtml
index 352575259..a7b83e817 100644
--- a/app/views/repositories/_dir_list_content.rhtml
+++ b/app/views/repositories/_dir_list_content.rhtml
@@ -25,7 +25,7 @@ end %>
<%= (entry.size ? number_to_human_size(entry.size) : "?") unless entry.is_dir? %> |
<%= link_to(entry.lastrev.name, :action => 'revision', :id => @project, :rev => entry.lastrev.identifier) if entry.lastrev && entry.lastrev.identifier %> |
<%= distance_of_time_in_words(entry.lastrev.time, Time.now) if entry.lastrev && entry.lastrev.time %> |
-<%=h(entry.lastrev.author) if entry.lastrev %> |
+<%=h(entry.lastrev.author.to_s.split('<').first) if entry.lastrev %> |
<% changeset = @project.repository.changesets.find_by_revision(entry.lastrev.identifier) if entry.lastrev %>
diff --git a/app/views/repositories/_revisions.rhtml b/app/views/repositories/_revisions.rhtml
index ea722329f..52992bb89 100644
--- a/app/views/repositories/_revisions.rhtml
+++ b/app/views/repositories/_revisions.rhtml
@@ -17,7 +17,7 @@
<%= radio_button_tag('rev', changeset.revision, (line_num==1), :id => "cb-#{line_num}", :onclick => "$('cbto-#{line_num+1}').checked=true;") if show_diff && (line_num < revisions.size) %> |
<%= radio_button_tag('rev_to', changeset.revision, (line_num==2), :id => "cbto-#{line_num}", :onclick => "if ($('cb-#{line_num}').checked==true) {$('cb-#{line_num-1}').checked=true;}") if show_diff && (line_num > 1) %> |
<%= format_time(changeset.committed_on) %> |
-<%=h changeset.committer %> |
+<%=h changeset.committer.to_s.split('<').first %> |
<% line_num += 1 %>
diff --git a/app/views/repositories/annotate.rhtml b/app/views/repositories/annotate.rhtml
index 3aa884104..28d99a393 100644
--- a/app/views/repositories/annotate.rhtml
+++ b/app/views/repositories/annotate.rhtml
@@ -12,7 +12,7 @@
<%= line_num %> |
<%= (revision.identifier ? link_to(revision.identifier, :action => 'revision', :id => @project, :rev => revision.identifier) : revision.revision) if revision %> |
- <%= h(revision.author) if revision %> |
+ <%= h(revision.author.to_s.split('<').first) if revision %> |
<%= line %> |
<% line_num += 1 %>
diff --git a/app/views/repositories/revision.rhtml b/app/views/repositories/revision.rhtml
index 80cfdf2b7..d60c0b0b7 100644
--- a/app/views/repositories/revision.rhtml
+++ b/app/views/repositories/revision.rhtml
@@ -22,7 +22,7 @@
<%= l(:label_revision) %> <%= @changeset.revision %>
<% if @changeset.scmid %>ID: <%= @changeset.scmid %>
<% end %>
-<%= @changeset.committer %>, <%= format_time(@changeset.committed_on) %>
+<%= @changeset.committer.to_s.split('<').first %>, <%= format_time(@changeset.committed_on) %>
<%= textilizable @changeset.comments %>