mirror of
https://github.com/redmine/redmine.git
synced 2026-03-05 12:01:23 +01:00
Use the classes whitelist configured in application.rb instead of hardcoded classes (#37476).
Patch by Jens Krämer. git-svn-id: https://svn.redmine.org/redmine/trunk@21777 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -108,7 +108,7 @@ class Setting < ActiveRecord::Base
|
||||
v = read_attribute(:value)
|
||||
# Unserialize serialized settings
|
||||
if available_settings[name]['serialized'] && v.is_a?(String)
|
||||
v = YAML.safe_load(v, permitted_classes: [Symbol, ActiveSupport::HashWithIndifferentAccess])
|
||||
v = YAML.safe_load(v, permitted_classes: Rails.configuration.active_record.yaml_column_permitted_classes)
|
||||
v = force_utf8_strings(v)
|
||||
end
|
||||
v = v.to_sym if available_settings[name]['format'] == 'symbol' && !v.blank?
|
||||
|
||||
Reference in New Issue
Block a user