summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-07-30 22:09:33 -0400
committerEvan Prodromou <evan@prodromou.name>2008-07-30 22:09:33 -0400
commitb1f28f44578b535a8ec4db2867f0e680b4ead786 (patch)
treecda9bc9c768d2e4f904def5ea2ceb6f087f87ee4
parentf2ae665e13f9eec7183709e85fec04009eff41ec (diff)
try to slim down the top menu so it all fits
darcs-hash:20080731020933-84dde-80d7abb2d681a9f748b16f6245d33396e1f899b2.gz
-rw-r--r--lib/util.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/util.php b/lib/util.php
index 9589ea035..a904e34e0 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -293,11 +293,8 @@ function common_nav_menu() {
common_menu_item(common_local_url('all', array('nickname' => $user->nickname)),
_('Home'));
}
- common_menu_item(common_local_url('public'), _('Public'));
common_menu_item(common_local_url('peoplesearch'), _('Search'));
common_menu_item(common_local_url('tags'), _('Tags'));
- common_menu_item(common_local_url('doc', array('title' => 'help')),
- _('Help'));
if ($user) {
common_menu_item(common_local_url('profilesettings'),
_('Settings'));
@@ -315,6 +312,8 @@ function common_nav_menu() {
function common_foot_menu() {
common_element_start('ul', array('id' => 'nav_sub'));
+ common_menu_item(common_local_url('doc', array('title' => 'help')),
+ _('Help'));
common_menu_item(common_local_url('doc', array('title' => 'about')),
_('About'));
common_menu_item(common_local_url('doc', array('title' => 'faq')),