diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-10-16 16:47:18 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-10-16 16:47:18 -0500 |
commit | 61a1467c90e865f43c359bb8678d27b5e571f21f (patch) | |
tree | b00ecfa243013c095cae5ae8f0832dbcb474a2dd /phpBB/includes/functions.php | |
parent | 25ef4d6f91e7723b0573ecbf66c0109170eae5d0 (diff) | |
download | forums-61a1467c90e865f43c359bb8678d27b5e571f21f.tar forums-61a1467c90e865f43c359bb8678d27b5e571f21f.tar.gz forums-61a1467c90e865f43c359bb8678d27b5e571f21f.tar.bz2 forums-61a1467c90e865f43c359bb8678d27b5e571f21f.tar.xz forums-61a1467c90e865f43c359bb8678d27b5e571f21f.zip |
[ticket/11103] U_VIEW_ALL_NOTIFICATIONS Link
PHPBB3-11103
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index 2645e55446..790724d3c5 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -5020,8 +5020,10 @@ function page_header($page_title = '', $display_online_list = true, $item_id = 0 'RECORD_USERS' => $l_online_record, 'PRIVATE_MESSAGE_INFO' => $l_privmsgs_text, 'PRIVATE_MESSAGE_INFO_UNREAD' => $l_privmsgs_text_unread, + 'UNREAD_NOTIFICATIONS_COUNT' => ($config['load_notifications']) ? $notifications['unread_count'] : '', 'NOTIFICATIONS_COUNT' => ($config['load_notifications']) ? $user->lang('NOTIFICATIONS_COUNT', $notifications['unread_count']) : '', + 'U_VIEW_ALL_NOTIFICATIONS' => append_sid("{$phpbb_root_path}ucp.$phpEx", 'i=ucp_notifications'), 'S_NOTIFICATIONS_DISPLAY' => $config['load_notifications'], 'S_USER_NEW_PRIVMSG' => $user->data['user_new_privmsg'], |