Skip to content

Commit

Permalink
Fixes users links.
Browse files Browse the repository at this point in the history
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2990 e93f8b46-1217-0410-a6f0-8f06a7374b81
  • Loading branch information
jplang committed Oct 29, 2009
1 parent e117dc8 commit e64fb6a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/helpers/queries_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ def column_content(column, issue)
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
Expand Down
2 changes: 1 addition & 1 deletion app/views/projects/list_members.rhtml
Original file line number Diff line number Diff line change
Expand Up @@ -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 %>

0 comments on commit e64fb6a

Please sign in to comment.