From: Jason Woofenden Date: Fri, 7 Oct 2011 05:24:59 +0000 (-0400) Subject: format_yesno/bool: check for more falsey strings X-Git-Url: https://jasonwoof.com/gitweb/?p=wfpl.git;a=commitdiff_plain;h=e648f21f696e973b58d135cf38f786f1ebae1327 format_yesno/bool: check for more falsey strings --- diff --git a/format.php b/format.php index a6b0582..13d79ce 100644 --- a/format.php +++ b/format.php @@ -178,7 +178,7 @@ function format_unix($str) { } function format_bool($str) { - if($str && $str !== 'No' && $str !== 'False' && $str !== 'false') { + if($str && $str !== 'No' && $str !== 'False' && $str !== 'false' && $str !== 'no' && $str !== 'N' && $str !== 'n') { return 1; } else { return 0; @@ -186,7 +186,7 @@ function format_bool($str) { } function format_yesno($str) { - if($str && $str !== 'No' && $str !== 'False' && $str !== 'false') { + if($str && $str !== 'No' && $str !== 'False' && $str !== 'false' && $str !== 'no' && $str !== 'N' && $str !== 'n') { return 'Yes'; } else { return 'No';