From: Jason Date: Mon, 15 Sep 2008 21:49:03 +0000 (-0400) Subject: fixed format_bool() to actually format as bool X-Git-Url: https://jasonwoof.com/gitweb/?p=wfpl.git;a=commitdiff_plain;h=3746445139a650d2ffdc9fc8099af9645fcb2308 fixed format_bool() to actually format as bool --- diff --git a/format.php b/format.php index de45928..f93d47f 100644 --- a/format.php +++ b/format.php @@ -126,9 +126,9 @@ function format_unix($str) { function format_bool($str) { if($str && $str !== 'No' && $str !== 'False' && $str !== 'false') { - return 'Yes'; + return 1; } else { - return 'No'; + return 0; } }