aboutsummaryrefslogtreecommitdiffstats
path: root/admin/cat_list.php
diff options
context:
space:
mode:
authorvdigital <vdigital@piwigo.org>2007-01-19 06:50:46 +0000
committervdigital <vdigital@piwigo.org>2007-01-19 06:50:46 +0000
commit4938b8b2a430695f9427d798e5df3b85ceddb4b5 (patch)
tree6accac58d81d5395de5a2c97b7767884b1ff399e /admin/cat_list.php
parent96a0c2b1d3f44196cb1471a4cb476aaf5efbca88 (diff)
Issue 0000615: End of page replaced by icon/page_end.png Only if + than 9 categories
Bug removed for new galleries... git-svn-id: http://piwigo.org/svn/trunk@1738 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/cat_list.php')
-rw-r--r--admin/cat_list.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/cat_list.php b/admin/cat_list.php
index 6b1ff40bb..5b2bd5f28 100644
--- a/admin/cat_list.php
+++ b/admin/cat_list.php
@@ -318,7 +318,7 @@ foreach ($categories as $category)
}
}
// Add a link to Page bottom only if needed (10 or more categories)
-if ( $category['rank'] > 9 )
+if ( isset($category['rank']) and $category['rank'] > 9 )
{
$template->assign_block_vars('eop_link', array('ICON'=>'Displayed'));
}