mirror of
https://github.com/discourse/discourse.git
synced 2025-09-07 12:02:53 +08:00
FIX: if an enum is Fixnum do not allow strings to live in it
This commit is contained in:
parent
ea9bc68ee5
commit
1c6250bff8
2 changed files with 30 additions and 0 deletions
|
@ -291,6 +291,7 @@ module SiteSettingExtension
|
|||
end
|
||||
|
||||
if type == types[:enum]
|
||||
val = val.to_i if Fixnum === defaults[name.to_sym]
|
||||
if enum_class(name)
|
||||
raise Discourse::InvalidParameters.new(:value) unless enum_class(name).valid_value?(val)
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue