From: Jason Date: Mon, 15 Sep 2008 21:45:31 +0000 (-0400) Subject: Merge branch 'master' of /home/jason/dev/git/wfpl X-Git-Url: https://jasonwoof.com/gitweb/?a=commitdiff_plain;h=c3133300f98840b9cedd56f6269274810160d6c2;hp=-c;p=wfpl.git Merge branch 'master' of /home/jason/dev/git/wfpl --- c3133300f98840b9cedd56f6269274810160d6c2 diff --combined encode.php index 6d386b3,f93387b..c08f8af --- a/encode.php +++ b/encode.php @@@ -99,13 -99,25 +99,25 @@@ function enc_url_path($str) # # Example: function enc_checked($str) { - if($str == 'Yes') { + if($str && $str !== 'No' && $str !== 'False' && $str !== 'false') { return '" checked="checked'; } else { return ''; } } + # checkboxe values are stored in the db and handled in php as 0 or 1. When you + # want it displayed as "Yes" or "No" use this: + # Example: (displaying values from a form submission) Over 60?: ~over_60.yesno~ + function enc_yesno($str) { + if($str && $str !== 'No' && $str !== 'False' && $str !== 'false') { + return 'Yes'; + } else { + return 'No'; + } + } + + # add a tab at the begining of each non-empty line function enc_tab($str) { $lines = explode("\n", $str);