mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-06-02 04:15:05 +02:00
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
This commit is contained in:
+1
-1
@@ -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'));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user