diff options
Diffstat (limited to 'include/functions_html.inc.php')
-rw-r--r-- | include/functions_html.inc.php | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/include/functions_html.inc.php b/include/functions_html.inc.php index 36d56aea9..8921a0234 100644 --- a/include/functions_html.inc.php +++ b/include/functions_html.inc.php @@ -32,7 +32,7 @@ function get_icon($date, $is_child_date = false) { return ''; } - + if (isset($page['get_icon_cache'][$date])) { if (! $page['get_icon_cache'][$date] ) @@ -713,19 +713,6 @@ function set_status_header($code, $text='') trigger_action('set_status_header', $code, $text); } -/** - * set a class to display a counter - * .zero .one .plural - */ -function set_span_class($count) -{ - if ($count > 1) - { - return 'plural'; - } - return ( $count == 0 ) ? 'zero':'one'; -} - /** returns the category comment for rendering in html. * this is an event handler. don't call directly */ |