aboutsummaryrefslogtreecommitdiffstats
path: root/include/functions_html.inc.php
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2008-03-23 00:04:46 +0000
committerrvelices <rv-github@modusoptimus.com>2008-03-23 00:04:46 +0000
commitee70a108bea04c718b7a6edb97aec56f2dae2679 (patch)
tree16e2516222dad9d798536065ab261d5a2ce00857 /include/functions_html.inc.php
parent6281b24550600862f715e3fb379e1f0b405cafa8 (diff)
- remove compatibility with old template ...
git-svn-id: http://piwigo.org/svn/trunk@2290 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'include/functions_html.inc.php')
-rw-r--r--include/functions_html.inc.php15
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
*/