From e648f21f696e973b58d135cf38f786f1ebae1327 Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Fri, 7 Oct 2011 01:24:59 -0400 Subject: [PATCH] format_yesno/bool: check for more falsey strings --- format.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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'; -- 1.7.10.4