From: Josh Grams Date: Wed, 5 Aug 2009 23:18:26 +0000 (-0400) Subject: * template.php (tem_auto_once): renamed to tem_auto_show. X-Git-Url: https://jasonwoof.com/gitweb/?a=commitdiff_plain;ds=sidebyside;h=2fddd1bc2f365493413587107c742e00a92e0af0;p=wfpl.git * template.php (tem_auto_once): renamed to tem_auto_show. --- diff --git a/template.php b/template.php index 03f11ea..d986a06 100644 --- a/template.php +++ b/template.php @@ -282,10 +282,10 @@ function tem_auto_sep($key, $context) { # else we are on the last row (cursor has hit the end and reset). } -# 'once' sections will be shown once unless the corresponding data value +# 'show' sections will be shown unless the corresponding data value # is false. We check only for false; 0 or '' will not work. -function tem_auto_once($key, $context) { +function tem_auto_show($key, $context) { if($context['data'][$key] !== false) return tem_data_as_rows(true); }