diff options
author | Eric Davis <edavis@littlestreamsoftware.com> | 2009-05-06 04:47:13 +0000 |
---|---|---|
committer | Eric Davis <edavis@littlestreamsoftware.com> | 2009-05-06 04:47:13 +0000 |
commit | f90b85f8be94ae5e3e73f98fdf0ab5e82815de40 (patch) | |
tree | 7b42141a06be0710b6a0a22d140fc207a28a9aca /app/views | |
parent | 1930cf3d4603f996e1639ca535b3b6a5b2604d44 (diff) | |
download | redmine-f90b85f8be94ae5e3e73f98fdf0ab5e82815de40.tar.gz redmine-f90b85f8be94ae5e3e73f98fdf0ab5e82815de40.zip |
Link the project name in simple issue lists.
#3085
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2712 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views')
-rw-r--r-- | app/views/issues/_list_simple.rhtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/issues/_list_simple.rhtml b/app/views/issues/_list_simple.rhtml index f57b19e84..38823765e 100644 --- a/app/views/issues/_list_simple.rhtml +++ b/app/views/issues/_list_simple.rhtml @@ -14,7 +14,7 @@ <%= check_box_tag("ids[]", issue.id, false, :style => 'display:none;') %> <%= link_to issue.id, :controller => 'issues', :action => 'show', :id => issue %> </td> - <td class="project"><%=h issue.project %></td> + <td class="project"><%= link_to(h(issue.project), :controller => 'projects', :action => 'show', :id => issue.project) %></td> <td class="tracker"><%=h issue.tracker %></td> <td class="subject"> <%= link_to h(truncate(issue.subject, :length => 60)), :controller => 'issues', :action => 'show', :id => issue %> (<%=h issue.status %>) |