mirror of
https://github.com/meineerde/redmine.git
synced 2026-02-11 13:15:20 +00: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:
parent
a892a7585f
commit
238e6ce65d
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user