aboutsummaryrefslogtreecommitdiffstats
path: root/admin/cat_list.php
diff options
context:
space:
mode:
authorvdigital <vdigital@piwigo.org>2007-01-18 21:10:39 +0000
committervdigital <vdigital@piwigo.org>2007-01-18 21:10:39 +0000
commit02b26f7684bb1626618c52b21999cbaa829496e4 (patch)
treee53d1fc153128db3310fc91395184947dbcc8dd1 /admin/cat_list.php
parent3f04afc12a369ca3284624de7b6695ab42cd0e4a (diff)
Issue 0000615: End of page replaced by icon/page_end.png Only if + than 9 categories
- footer.tpl is changed for PNG Transparency with IE - Fine pwg_footer.png git-svn-id: http://piwigo.org/svn/trunk@1734 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/cat_list.php')
-rw-r--r--admin/cat_list.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/admin/cat_list.php b/admin/cat_list.php
index 44e1cc883..6b1ff40bb 100644
--- a/admin/cat_list.php
+++ b/admin/cat_list.php
@@ -317,6 +317,11 @@ foreach ($categories as $category)
);
}
}
+// Add a link to Page bottom only if needed (10 or more categories)
+if ( $category['rank'] > 9 )
+{
+ $template->assign_block_vars('eop_link', array('ICON'=>'Displayed'));
+}
// +-----------------------------------------------------------------------+
// | sending html code |
// +-----------------------------------------------------------------------+