2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00

Revert "FIX: fixnum type site setting can't be more than 20000"

This reverts commit 636cc66e1f.
This commit is contained in:
Arpit Jalan 2015-07-13 22:53:44 +05:30
parent fcdb7f36b7
commit e9a81064e7
2 changed files with 4 additions and 4 deletions

View file

@ -310,8 +310,8 @@ module SiteSettingExtension
type = get_data_type(name, defaults[name.to_sym])
if type == types[:fixnum]
# value should be less than 20000
valid = false if value.to_i > 20000
# validate fixnum
valid = false unless value.to_i.is_a?(Fixnum)
end
return valid