diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-04-17 09:32:24 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-04-17 09:32:24 +0000 |
commit | 80f3ac59b2fd7339d796b9269d77eb581c54b11f (patch) | |
tree | 4de314540ebbbea0c6f4511678efe7efa8bb3ff6 | |
parent | 246370a30234abe843aff69193c2e70e280d46f6 (diff) | |
download | semanticscuttle-80f3ac59b2fd7339d796b9269d77eb581c54b11f.tar.gz semanticscuttle-80f3ac59b2fd7339d796b9269d77eb581c54b11f.tar.bz2 |
Interface design: re-order boxes
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@109 b3834d28-1941-0410-a4f8-b48e95affb8f
-rw-r--r-- | bookmarks.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bookmarks.php b/bookmarks.php index 285f29a..2adb7bb 100644 --- a/bookmarks.php +++ b/bookmarks.php @@ -168,17 +168,19 @@ if ($templatename == 'editbookmark.tpl') { } } else if ($user && !isset($_GET['popup'])) { - $tplVars['sidebar_blocks'] = array('profile', 'watchstatus', 'menu'); + $tplVars['sidebar_blocks'] = array('profile', 'watchstatus'); if (!$cat) { $cat = NULL; $tplVars['currenttag'] = NULL; + $tplVars['sidebar_blocks'][] = 'menu'; } else { $rssCat = '/'. filter($cat, 'url'); $tplVars['currenttag'] = $cat; $tplVars['sidebar_blocks'][] = 'tagactions'; $tplVars['sidebar_blocks'][] = 'linked'; $tplVars['sidebar_blocks'][] = 'related'; + $tplVars['sidebar_blocks'][] = 'menu'; } $tplVars['popCount'] = 30; $tplVars['sidebar_blocks'][] = 'popular'; |