diff options
author | friendica <info@friendica.com> | 2012-02-23 00:28:26 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-02-23 00:28:26 -0800 |
commit | fd43e2c563679a98ad31e1a09a05bef6bb448677 (patch) | |
tree | b37a0f5f375a50857ea52ac54e84fdab997adc17 | |
parent | 41636a50aa4fd3f53ad9f9e9d797bfcc37ba8e13 (diff) | |
download | volse-hubzilla-fd43e2c563679a98ad31e1a09a05bef6bb448677.tar.gz volse-hubzilla-fd43e2c563679a98ad31e1a09a05bef6bb448677.tar.bz2 volse-hubzilla-fd43e2c563679a98ad31e1a09a05bef6bb448677.zip |
more theme notify fixes
-rwxr-xr-x | include/nav.php | 2 | ||||
-rwxr-xr-x | view/nav.tpl | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/include/nav.php b/include/nav.php index 6fee7adb2..511ca07fc 100755 --- a/include/nav.php +++ b/include/nav.php @@ -117,7 +117,7 @@ function nav(&$a) { $nav['introductions'] = array('notifications/intros', t('Introductions'), "", t('Friend Requests')); $nav['notifications'] = array('notifications', t('Notifications'), "", t('Notifications')); $nav['notifications']['all']=array('notifications/system', t('See all notifications'), "", ""); - $nav['notifications']['mark'] = array('', t('Mark all notifications seen'), '',''); + $nav['notifications']['mark'] = array('', t('Mark all system notifications seen'), '',''); } diff --git a/view/nav.tpl b/view/nav.tpl index dffa6e520..8c872864c 100755 --- a/view/nav.tpl +++ b/view/nav.tpl @@ -43,6 +43,7 @@ <li id="nav-notifications-linkmenu" class="nav-menu-icon"><a href="$nav.notifications.0" rel="#nav-notifications-menu" title="$nav.notifications.1"><span class="icon s22 notify">$nav.notifications.1</span></a> <span id="notify-update" class="nav-notify"></span> <ul id="nav-notifications-menu" class="menu-popup"> + <li id="nav-notifications-mark-all"><a href="#" onclick="notifyMarkAll(); return false;">$nav.notifications.mark.1</a></li> <li id="nav-notifications-see-all"><a href="$nav.notifications.all.0">$nav.notifications.all.1</a></li> <li class="empty">$emptynotifications</li> </ul> |