]> source.dussan.org Git - redmine.git/commitdiff
Pass the commit keyword used to update the issue to the plugin hook.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 5 Oct 2013 10:02:31 +0000 (10:02 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sat, 5 Oct 2013 10:02:31 +0000 (10:02 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@12198 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/models/changeset.rb

index 7920ae078edf16fd761af86e66c9a6977af3978c..87fdaffcd1a9762578b0b0ced7086cb0edb5f14b 100644 (file)
@@ -223,7 +223,7 @@ class Changeset < ActiveRecord::Base
     journal = issue.init_journal(user || User.anonymous, ll(Setting.default_language, :text_status_changed_by_changeset, text_tag(issue.project)))
     issue.assign_attributes updates.slice(*Issue.attribute_names)
     Redmine::Hook.call_hook(:model_changeset_scan_commit_for_issue_ids_pre_issue_update,
-                            { :changeset => self, :issue => issue })
+                            { :changeset => self, :issue => issue, :action => action })
     unless issue.save
       logger.warn("Issue ##{issue.id} could not be saved by changeset #{id}: #{issue.errors.full_messages}") if logger
     end