JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
format_yesno/bool: check for more falsey strings
[wfpl.git] / format.php
index a6b0582..13d79ce 100644 (file)
@@ -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';