mirror of
https://github.com/redmine/redmine.git
synced 2026-03-08 05:30:45 +01:00
Fix config/settings.yml not closed in Setting.load_available_settings (#38250).
Patch by Thomas Löber. git-svn-id: https://svn.redmine.org/redmine/trunk@22099 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -320,8 +320,10 @@ class Setting < ActiveRecord::Base
|
||||
end
|
||||
|
||||
def self.load_available_settings
|
||||
YAML::load(File.open("#{Rails.root}/config/settings.yml")).each do |name, options|
|
||||
define_setting name, options
|
||||
File.open("#{Rails.root}/config/settings.yml") do |f|
|
||||
YAML.load(f).each do |name, options|
|
||||
define_setting name, options
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user