diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-22 13:20:06 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-22 13:20:06 -0400 |
commit | 21d54452a039558617f9343b5424c206206a7999 (patch) | |
tree | 1aeab2ba74ff424cf634ec8932ca02af5a2132cd /lib | |
parent | b2903983bdabf0681d37942bf9b09363f07229c6 (diff) |
TODOs and docs and openmicroblogging spec
Moved around a few TODOs.
Linked to docs in the foot menu better.
Added a specification for the openmicroblogging standard.
darcs-hash:20080522172006-84dde-060372ec90444faf0e3453229cfd33aceaf28e4a.gz
Diffstat (limited to 'lib')
-rw-r--r-- | lib/util.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/util.php b/lib/util.php index 5d363241b..3be29651c 100644 --- a/lib/util.php +++ b/lib/util.php @@ -172,8 +172,7 @@ function common_license_block() { function common_head_menu() { $user = common_current_user(); common_element_start('ul', array('id' => 'menu', 'class' => ($user) ? 'five' : 'three')); - common_menu_item(common_local_url('doc', array('title' => 'help')), - _t('Help')); + common_menu_item(common_local_url('public'), _t('Public')); if ($user) { common_menu_item(common_local_url('all', array('nickname' => $user->nickname)), @@ -202,6 +201,8 @@ function common_foot_menu() { _t('Help')); common_menu_item(common_local_url('doc', array('title' => 'privacy')), _t('Privacy')); + common_menu_item(common_local_url('doc', array('title' => 'source')), + _t('Privacy')); common_element_end('ul'); } |