Interface design: re-order boxes

git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@109 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
mensonge 2008-04-17 09:32:24 +00:00
parent 246370a302
commit 80f3ac59b2

View file

@ -168,17 +168,19 @@ if ($templatename == 'editbookmark.tpl') {
} }
} else if ($user && !isset($_GET['popup'])) { } else if ($user && !isset($_GET['popup'])) {
$tplVars['sidebar_blocks'] = array('profile', 'watchstatus', 'menu'); $tplVars['sidebar_blocks'] = array('profile', 'watchstatus');
if (!$cat) { if (!$cat) {
$cat = NULL; $cat = NULL;
$tplVars['currenttag'] = NULL; $tplVars['currenttag'] = NULL;
$tplVars['sidebar_blocks'][] = 'menu';
} else { } else {
$rssCat = '/'. filter($cat, 'url'); $rssCat = '/'. filter($cat, 'url');
$tplVars['currenttag'] = $cat; $tplVars['currenttag'] = $cat;
$tplVars['sidebar_blocks'][] = 'tagactions'; $tplVars['sidebar_blocks'][] = 'tagactions';
$tplVars['sidebar_blocks'][] = 'linked'; $tplVars['sidebar_blocks'][] = 'linked';
$tplVars['sidebar_blocks'][] = 'related'; $tplVars['sidebar_blocks'][] = 'related';
$tplVars['sidebar_blocks'][] = 'menu';
} }
$tplVars['popCount'] = 30; $tplVars['popCount'] = 30;
$tplVars['sidebar_blocks'][] = 'popular'; $tplVars['sidebar_blocks'][] = 'popular';