Page title if there is a single link

Fixes #232
This commit is contained in:
ArthurHoaro 2015-06-23 20:22:02 +02:00
parent 0923a2bc1b
commit c68da3ffbf
1 changed files with 4 additions and 2 deletions

View File

@ -1706,8 +1706,10 @@ function buildLinkList($PAGE,$LINKSDB)
*/
$keys=array(); foreach($linksToDisplay as $key=>$value) { $keys[]=$key; } // Stupid and ugly. Thanks PHP.
// If there is only a single link, we change on-the-fly the title of the page.
if (count($linksToDisplay)==1) $GLOBALS['pagetitle'] = $linksToDisplay[$keys[0]]['title'].' - '.$GLOBALS['title'];
// If it's a permalink, we change on-the-fly the title of the page.
if(!empty($search_type && $search_type == 'permalink')) {
$GLOBALS['pagetitle'] = $linksToDisplay[$keys[0]]['title'] . ' - ' . $GLOBALS['title'];
}
// Select articles according to paging.
$pagecount = ceil(count($keys)/$_SESSION['LINKS_PER_PAGE']);