diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-04-10 09:32:18 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-04-10 09:32:18 +0000 |
commit | c86caa886656c5588da416b54c1c1bf62aaf3d74 (patch) | |
tree | 720da8103102b132d81e58af3cea3aa801acbc88 /index.php | |
parent | 8e4d0718e2b575a85e653ce9cd3ce4728103ddfb (diff) | |
download | semanticscuttle-c86caa886656c5588da416b54c1c1bf62aaf3d74.tar.gz semanticscuttle-c86caa886656c5588da416b54c1c1bf62aaf3d74.tar.bz2 |
Bug fix: correct menu configuration on index page
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@101 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -67,8 +67,8 @@ $dtend = date('Y-m-d H:i:s', strtotime('tomorrow')); $tplVars['page'] = $page; $tplVars['start'] = $start; $tplVars['popCount'] = 30; -/*$tplVars['sidebar_blocks'] = array('search', 'users', 'linked', 'recent');*/ -$tplVars['sidebar_blocks'] = $_GLOBAL["index_sidebar_blocks"];; +//$tplVars['sidebar_blocks'] = array('search', 'users', 'linked', 'recent'); +$tplVars['sidebar_blocks'] = $GLOBALS["index_sidebar_blocks"]; $tplVars['range'] = 'all'; $tplVars['pagetitle'] = T_('Store, share and tag your favourite links'); $tplVars['subtitle'] = T_('Recent Bookmarks'); |