Module:Param Parse: Difference between revisions

Jump to navigation Jump to search
Content added Content deleted
(yes_no_smw instead of yes_no)
Tags: Mobile edit Mobile web edit Advanced mobile edit
(yes_no_smw)
Line 37: Line 37:
return nil
return nil
end
end
return yes_no[text] or nil
local bool = yes_no[text]
if bool ~= nil then
return bool
end
return nil
end
end