mirror of
https://github.com/redmine/redmine.git
synced 2025-12-16 05:20:28 +01:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user