aboutsummaryrefslogtreecommitdiffstats
path: root/include/nav.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-10-11 20:38:09 -0700
committerFriendika <info@friendika.com>2011-10-11 20:38:09 -0700
commit3ef7dcac4b84f6f78dcba5cd768fc08f9cfc1067 (patch)
treea5c1bb726da5cb539004d212f0aaae3f8f9ffb95 /include/nav.php
parent2206d894b3fec7064b91e0420bcc2b16e9e7009b (diff)
downloadvolse-hubzilla-3ef7dcac4b84f6f78dcba5cd768fc08f9cfc1067.tar.gz
volse-hubzilla-3ef7dcac4b84f6f78dcba5cd768fc08f9cfc1067.tar.bz2
volse-hubzilla-3ef7dcac4b84f6f78dcba5cd768fc08f9cfc1067.zip
solve intro/notify naming issue by providing both or either, theme decides what to do
Diffstat (limited to 'include/nav.php')
-rw-r--r--include/nav.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/nav.php b/include/nav.php
index 600043ee5..5c24df51e 100644
--- a/include/nav.php
+++ b/include/nav.php
@@ -114,7 +114,9 @@ function nav(&$a) {
/* only show friend requests for normal pages. Other page types have automatic friendship. */
if($_SESSION['page_flags'] == PAGE_NORMAL) {
- $nav['notifications'] = array('notifications/network', t('Notifications'), "", t('Notifications'));
+ $nav['introductions'] = array('notifications/intros', t('Introductions'), "", t('Friend Requests'));
+ $nav['notifications'] = array('notifications', t('Notifications'), "", t('Notifications'));
+
}
$nav['messages'] = array('message', t('Messages'), "", t('Private mail'));
@@ -175,6 +177,7 @@ function nav_set_selected($item){
'network' => null,
'home' => null,
'profiles' => null,
+ 'introductions' => null,
'notifications' => null,
'messages' => null,
'directory' => null,