diff options
author | Matt Friedman <maf675@gmail.com> | 2012-12-27 22:35:55 -0800 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2013-01-15 00:57:17 -0600 |
commit | 918053e4781425f368261db3b55efbb6abad160d (patch) | |
tree | ec1a2e10f35797601d4ec4b41c66bd9d64d367e0 | |
parent | 192039a9e070f7ae09397d232d19d33a71e48ed2 (diff) | |
download | forums-918053e4781425f368261db3b55efbb6abad160d.tar forums-918053e4781425f368261db3b55efbb6abad160d.tar.gz forums-918053e4781425f368261db3b55efbb6abad160d.tar.bz2 forums-918053e4781425f368261db3b55efbb6abad160d.tar.xz forums-918053e4781425f368261db3b55efbb6abad160d.zip |
[ticket/11103] Fix notifications link to handle non-JS fallback
PHPBB3-11103
-rw-r--r-- | phpBB/styles/prosilver/template/overall_header.html | 2 | ||||
-rw-r--r-- | phpBB/styles/subsilver2/template/overall_header.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/overall_header.html b/phpBB/styles/prosilver/template/overall_header.html index 3f5bec9b8a..830b9544a5 100644 --- a/phpBB/styles/prosilver/template/overall_header.html +++ b/phpBB/styles/prosilver/template/overall_header.html @@ -133,7 +133,7 @@ <ul class="linklist leftside"> <!-- IF S_NOTIFICATIONS_DISPLAY --> <li> - [ <a href="#" id="notification_list_button" title="{NOTIFICATIONS_COUNT}">{NOTIFICATIONS_COUNT}</a> ] • + [ <a href="{U_VIEW_ALL_NOTIFICATIONS}" id="notification_list_button" title="{NOTIFICATIONS_COUNT}">{NOTIFICATIONS_COUNT}</a> ] • <div id="notification_list" class="notification_list"> <div class="pointer"><div class="pointer_inner"></div></div> <div class="header"> diff --git a/phpBB/styles/subsilver2/template/overall_header.html b/phpBB/styles/subsilver2/template/overall_header.html index e516a78e45..c8ddf2bcd3 100644 --- a/phpBB/styles/subsilver2/template/overall_header.html +++ b/phpBB/styles/subsilver2/template/overall_header.html @@ -150,7 +150,7 @@ function marklist(id, name, state) <tr> <td class="genmed"> <!-- IF S_NOTIFICATIONS_DISPLAY --> - [ <a href="#" id="notification_list_button" title="{NOTIFICATIONS_COUNT}">{NOTIFICATIONS_COUNT}</a> ] • + [ <a href="{U_VIEW_ALL_NOTIFICATIONS}" id="notification_list_button" title="{NOTIFICATIONS_COUNT}">{NOTIFICATIONS_COUNT}</a> ] • <div id="notification_list" class="notification_list"> <div class="row1 header"> {L_NOTIFICATIONS} |