mirror of
https://github.com/redmine/redmine.git
synced 2026-01-15 20:13:09 +01:00
Fix "DEPRECATION WARNING: Calling '<<' to an ActiveModel::Errors message array in order to add an error is deprecated." (#29914, #34985).
git-svn-id: http://svn.redmine.org/redmine/trunk@20898 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -20,7 +20,7 @@ module Redmine
|
||||
|
||||
def check_password
|
||||
unless password.present? && User.current.check_password?(password)
|
||||
errors[:password] << :invalid
|
||||
errors.add(:password, :invalid)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user