diff options
Diffstat (limited to 'admin/cat_list.php')
-rw-r--r-- | admin/cat_list.php | 5 |
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 | // +-----------------------------------------------------------------------+ |