mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-30 20:29:37 +00:00
Merged r13640 from 2.6-stable to trunk (#18280)
git-svn-id: http://svn.redmine.org/redmine/trunk@13641 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
d1982d8156
commit
1ada789a6c
@ -99,7 +99,8 @@ class IssueStatus < ActiveRecord::Base
|
||||
" JOIN #{JournalDetail.table_name} d ON d.journal_id = j.id" +
|
||||
" WHERE j.journalized_type = 'Issue' AND j.journalized_id = #{Issue.table_name}.id" +
|
||||
" AND d.property = 'attr' AND d.prop_key = 'status_id' AND d.value = :status_id"
|
||||
Issue.where(:status_id => id, :closed_on => nil).update_all(["closed_on = (#{subselect})", :status_id => id.to_s])
|
||||
Issue.where(:status_id => id, :closed_on => nil).
|
||||
update_all(["closed_on = (#{subselect})", {:status_id => id.to_s}])
|
||||
|
||||
# Then we update issues that don't have a journal which means the
|
||||
# current status was set on creation
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user