From: Frederik Ramm Date: Tue, 21 Apr 2009 23:38:43 +0000 (+0000) Subject: modified "user" link in "recent changes" list to point directly to user's list of... X-Git-Tag: live~7553 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/3a10fee9eb3d738c5437622ecf7ae4cd42be1578 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. --- diff --git a/app/views/changeset/_changeset.rhtml b/app/views/changeset/_changeset.rhtml index a149a72e9..4012c41a3 100644 --- a/app/views/changeset/_changeset.rhtml +++ b/app/views/changeset/_changeset.rhtml @@ -14,7 +14,7 @@ <%if showusername %> <% 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 %> Anonymous <% end %>