From: Go MAEDA Date: Thu, 1 Apr 2021 15:41:07 +0000 (+0000) Subject: Fix "DEPRECATION WARNING: Calling '<<' to an ActiveModel::Errors message array in... X-Git-Tag: 5.0.0~461 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=357fa10bbd0f75ba75236367d91a4cbfc99dd5bc;p=redmine.git 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 --- diff --git a/lib/redmine/sudo_mode.rb b/lib/redmine/sudo_mode.rb index ca15705d6..9703f0c77 100644 --- a/lib/redmine/sudo_mode.rb +++ b/lib/redmine/sudo_mode.rb @@ -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