Rails3: model: replace deprecated errors.add_to_base at save_issue_with_child_records of Issue

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7589 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-10-06 22:49:02 +00:00
parent a09da046ec
commit caa2ce3417
1 changed files with 1 additions and 1 deletions

View File

@ -634,7 +634,7 @@ class Issue < ActiveRecord::Base
end
rescue ActiveRecord::StaleObjectError
attachments[:files].each(&:destroy)
errors.add_to_base l(:notice_locking_conflict)
errors.add :base, l(:notice_locking_conflict)
raise ActiveRecord::Rollback
end
end