mirror of
https://github.com/redmine/redmine.git
synced 2026-02-16 11:37:42 +01:00
2.6-stable: fix syntax error on Ruby 1.8.7 (#18280)
git-svn-id: http://svn.redmine.org/redmine/branches/2.6-stable@13640 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -104,7 +104,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
|
||||
|
||||
Reference in New Issue
Block a user