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
when :project
link_to(h(value), :controller => 'projects', :action => 'show', :id => value)
when :assigned_to
link_to(h(value), :controller => 'account', :action => 'show', :id => value)
link_to_user value
when :author
link_to(h(value), :controller => 'account', :action => 'show', :id => value)
link_to_user value
when :done_ratio
progress_bar(value, :width => '80px')
when :fixed_version
......
......@@ -7,7 +7,7 @@
<h3><%= role.name %></h3>
<ul>
<% 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 %>
</ul>
<% 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