diff options
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 12 |
1 files changed, 5 insertions, 7 deletions
@@ -1675,10 +1675,7 @@ function buildLinkList($PAGE,$LINKSDB, $conf, $pluginManager) | |||
1675 | $keys[] = $key; | 1675 | $keys[] = $key; |
1676 | } | 1676 | } |
1677 | 1677 | ||
1678 | // If there is only a single link, we change on-the-fly the title of the page. | 1678 | |
1679 | if (count($linksToDisplay) == 1) { | ||
1680 | $conf->set('pagetitle', $linksToDisplay[$keys[0]]['title'] .' - '. $conf->get('general.title')); | ||
1681 | } | ||
1682 | 1679 | ||
1683 | // Select articles according to paging. | 1680 | // Select articles according to paging. |
1684 | $pagecount = ceil(count($keys) / $_SESSION['LINKS_PER_PAGE']); | 1681 | $pagecount = ceil(count($keys) / $_SESSION['LINKS_PER_PAGE']); |
@@ -1740,9 +1737,10 @@ function buildLinkList($PAGE,$LINKSDB, $conf, $pluginManager) | |||
1740 | 'links' => $linkDisp, | 1737 | 'links' => $linkDisp, |
1741 | 'tags' => $LINKSDB->allTags(), | 1738 | 'tags' => $LINKSDB->allTags(), |
1742 | ); | 1739 | ); |
1743 | // FIXME! temporary fix - see #399. | 1740 | |
1744 | if ($conf->exists('pagetitle') && count($linkDisp) == 1) { | 1741 | // If there is only a single link, we change on-the-fly the title of the page. |
1745 | $data['pagetitle'] = $conf->get('pagetitle'); | 1742 | if (count($linksToDisplay) == 1) { |
1743 | $data['pagetitle'] = $linksToDisplay[$keys[0]]['title'] .' - '. $conf->get('general.title'); | ||
1746 | } | 1744 | } |
1747 | 1745 | ||
1748 | $pluginManager->executeHooks('render_linklist', $data, array('loggedin' => isLoggedIn())); | 1746 | $pluginManager->executeHooks('render_linklist', $data, array('loggedin' => isLoggedIn())); |