2
0
Fork 0
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:
Sam 2015-08-26 16:39:09 +10:00
parent ea9bc68ee5
commit 1c6250bff8
2 changed files with 30 additions and 0 deletions

View file

@ -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