diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-10-19 19:16:50 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-10-19 19:16:50 +0000 |
commit | f3baa5bfeedad593b1a82e310bbc7831e342ee37 (patch) | |
tree | 6271603360bfa8e1b89ada11baa6dadbde376b94 /app/models | |
parent | 297eb6f81bf2adb50b67cdf468cde6fb1286f90d (diff) | |
download | redmine-f3baa5bfeedad593b1a82e310bbc7831e342ee37.tar.gz redmine-f3baa5bfeedad593b1a82e310bbc7831e342ee37.zip |
Fixed: precedes/follows relations no longer update start/due dates (#5803).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4263 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/issue.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/models/issue.rb b/app/models/issue.rb index 3fbbb4513..68d6a2bd5 100644 --- a/app/models/issue.rb +++ b/app/models/issue.rb @@ -86,8 +86,8 @@ class Issue < ActiveRecord::Base } before_create :default_assign - before_save :reschedule_following_issues, :close_duplicates, :update_done_ratio_from_issue_status - after_save :update_nested_set_attributes, :update_parent_attributes, :create_journal + before_save :close_duplicates, :update_done_ratio_from_issue_status + after_save :reschedule_following_issues, :update_nested_set_attributes, :update_parent_attributes, :create_journal after_destroy :destroy_children after_destroy :update_parent_attributes |