mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-04-04 11:10:04 -04:00
Merge pull request #280 from nverba/patch-1
Quick fix for Boolean SiteSettings
This commit is contained in:
commit
37175c264a
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ module SiteSettingExtension
|
|||
type = get_data_type(defaults[name])
|
||||
|
||||
if type == Types::Bool && val != true && val != false
|
||||
val = (val == "t" || val == "true")
|
||||
val = (val == "t" || val == "true") ? 't' : 'f'
|
||||
end
|
||||
|
||||
if type == Types::Fixnum && !(Fixnum === val)
|
||||
|
|
Loading…
Add table
Reference in a new issue