OSDN Git Service

Include the issue status in search results and the Activity page. (#3700)
authorEric Davis <edavis@littlestreamsoftware.com>
Sun, 2 Aug 2009 04:36:06 +0000 (04:36 +0000)
committerEric Davis <edavis@littlestreamsoftware.com>
Sun, 2 Aug 2009 04:36:06 +0000 (04:36 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2834 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/issue.rb

index 578f01e..7d2dd41 100644 (file)
@@ -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' : '') }