From: Eric Davis Date: Sun, 2 Aug 2009 04:36:06 +0000 (+0000) Subject: Include the issue status in search results and the Activity page. (#3700) X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=9ed048dc4212bff1d685ab24eb011439f9fc11fa;p=redminele%2Fredmine.git Include the issue status in search results and the Activity page. (#3700) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2834 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/models/issue.rb b/app/models/issue.rb index 578f01ee..7d2dd413 100644 --- a/app/models/issue.rb +++ b/app/models/issue.rb @@ -39,7 +39,7 @@ class Issue < ActiveRecord::Base :include => [:project, :journals], # sort by id so that limited eager loading doesn't break with postgresql :order_column => "#{table_name}.id" - acts_as_event :title => Proc.new {|o| "#{o.tracker.name} ##{o.id}: #{o.subject}"}, + acts_as_event :title => Proc.new {|o| "#{o.tracker.name} ##{o.id} (#{o.status}): #{o.subject}"}, :url => Proc.new {|o| {:controller => 'issues', :action => 'show', :id => o.id}}, :type => Proc.new {|o| 'issue' + (o.closed? ? ' closed' : '') }