modified "user" link in "recent changes" list to point directly to user's list of changes which is what you expect in this context, rather than going to that user's user page and having to click "edits" there.

This commit is contained in:
Frederik Ramm 2009-04-21 23:38:43 +00:00
parent a80b42652b
commit 3a10fee9eb

View file

@ -14,7 +14,7 @@
<%if showusername %>
<td class="<%= cl %>">
<% if changeset.user.data_public? %>
<%= link_to h(changeset.user.display_name), :controller => "user", :action => "view", :display_name => changeset.user.display_name %>
<%= link_to h(changeset.user.display_name), :controller => "changeset", :action => "list_user", :display_name => changeset.user.display_name %>
<% else %>
<i>Anonymous</i>
<% end %>