mirror of
https://github.com/meineerde/redmine.git
synced 2026-03-10 19:23:06 +00:00
Merged r21294 from trunk to 4.2-stable (#36226).
git-svn-id: http://svn.redmine.org/redmine/branches/4.2-stable@21404 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
74d0594c2e
commit
7dff6698f8
@ -105,7 +105,8 @@ class Setting < ActiveRecord::Base
|
||||
v = read_attribute(:value)
|
||||
# Unserialize serialized settings
|
||||
if available_settings[name]['serialized'] && v.is_a?(String)
|
||||
v = YAML::load(v)
|
||||
# YAML.load works as YAML.safe_load if Psych >= 4.0 is installed
|
||||
v = YAML.respond_to?(:unsafe_load) ? YAML.unsafe_load(v) : YAML.load(v)
|
||||
v = force_utf8_strings(v)
|
||||
end
|
||||
v = v.to_sym if available_settings[name]['format'] == 'symbol' && !v.blank?
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user