]> source.dussan.org Git - redmine.git/commitdiff
2.6-stable: fix syntax error on Ruby 1.8.7 (#18280)
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 22 Nov 2014 13:45:35 +0000 (13:45 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 22 Nov 2014 13:45:35 +0000 (13:45 +0000)
git-svn-id: http://svn.redmine.org/redmine/branches/2.6-stable@13640 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/issue_status.rb

index 3b1dd08da23c250d176a3fb7606f7a307f51a4ff..1e491e90bd5f468707e74cd546f53dea20df2e50 100644 (file)
@@ -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