use "do end" instead of {} at app/models/setting.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@20283 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA
2020-11-07 12:30:31 +00:00
parent a892a7585f
commit 238e6ce65d

View File

@@ -221,11 +221,11 @@ class Setting < ActiveRecord::Base
params[:keywords].each_with_index do |keywords, i|
next if keywords.blank?
s << attributes.inject({}) {|h, a|
s << attributes.inject({}) do |h, a|
value = params[a][i].to_s
h[a.to_s] = value if value.present?
h
}.merge('keywords' => keywords)
end.merge('keywords' => keywords)
end
end
s