Undid revision 948472533 by [[Special:Contributions/w>Vogone|w>Vogone]] ([[User talk:w>Vogone|talk]])
starcitizen>Alistair3149 (Created page with "-- Function allowing for consistent treatment of boolean-like wikitext input. -- It works similarly to the template {{yesno}}. return function (val, default) -- If your wiki...") |
(Undid revision 948472533 by [[Special:Contributions/w>Vogone|w>Vogone]] ([[User talk:w>Vogone|talk]])) |
||
| Рядок 14: | Рядок 14: | ||
or val == 'true' | or val == 'true' | ||
or val == 't' | or val == 't' | ||
or val == 'on' | |||
or tonumber(val) == 1 | or tonumber(val) == 1 | ||
then | then | ||
| Рядок 22: | Рядок 23: | ||
or val == 'false' | or val == 'false' | ||
or val == 'f' | or val == 'f' | ||
or val == 'off' | |||
or tonumber(val) == 0 | or tonumber(val) == 0 | ||
then | then | ||