Commit e64fb6a7 authored by Jean-Philippe Lang's avatar Jean-Philippe Lang

Fixes users links.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2990 e93f8b46-1217-0410-a6f0-8f06a7374b81
parent e117dc8c
...@@ -45,9 +45,9 @@ module QueriesHelper ...@@ -45,9 +45,9 @@ module QueriesHelper
when :project when :project
link_to(h(value), :controller => 'projects', :action => 'show', :id => value) link_to(h(value), :controller => 'projects', :action => 'show', :id => value)
when :assigned_to when :assigned_to
link_to(h(value), :controller => 'account', :action => 'show', :id => value) link_to_user value
when :author when :author
link_to(h(value), :controller => 'account', :action => 'show', :id => value) link_to_user value
when :done_ratio when :done_ratio
progress_bar(value, :width => '80px') progress_bar(value, :width => '80px')
when :fixed_version when :fixed_version
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<h3><%= role.name %></h3> <h3><%= role.name %></h3>
<ul> <ul>
<% members[role].each do |m| %> <% members[role].each do |m| %>
<li><%= link_to m.name, :controller => 'account', :action => 'show', :id => m.user %> (<%= format_date m.created_on %>)</li> <li><%= link_to_user m.user %> (<%= format_date m.created_on %>)</li>
<% end %> <% end %>
</ul> </ul>
<% end %> <% end %>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment