From bb1edda6e803c6a91fbcb7941fd619eb55be8d32 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sat, 21 Jun 2008 12:32:47 +0000 Subject: Display issue notes in the activity view (#1509). git-svn-id: http://redmine.rubyforge.org/svn/trunk@1567 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/models/journal.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/models/journal.rb') diff --git a/app/models/journal.rb b/app/models/journal.rb index ac141f68c..67a3eee3b 100644 --- a/app/models/journal.rb +++ b/app/models/journal.rb @@ -33,7 +33,7 @@ class Journal < ActiveRecord::Base acts_as_event :title => Proc.new {|o| status = ((s = o.new_status) ? " (#{s})" : nil); "#{o.issue.tracker} ##{o.issue.id}#{status}: #{o.issue.subject}" }, :description => :notes, :author => :user, - :type => Proc.new {|o| (s = o.new_status) && s.is_closed? ? 'issue-closed' : 'issue-edit' }, + :type => Proc.new {|o| (s = o.new_status) ? (s.is_closed? ? 'issue-closed' : 'issue-edit') : 'issue-note' }, :url => Proc.new {|o| {:controller => 'issues', :action => 'show', :id => o.issue.id, :anchor => "change-#{o.id}"}} def save -- cgit v1.2.3