aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2007-03-31 11:58:28 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2007-03-31 11:58:28 +0000
commitf6d1fa57b269370583dca8bf0f2f3347d00d5e4a (patch)
treef1fa109ddfe6b07198f5ce781a8a138081acfd85 /phpBB
parent2dbced7bd28f686e3e320d1e3e3b07adf1d302e2 (diff)
downloadforums-f6d1fa57b269370583dca8bf0f2f3347d00d5e4a.tar
forums-f6d1fa57b269370583dca8bf0f2f3347d00d5e4a.tar.gz
forums-f6d1fa57b269370583dca8bf0f2f3347d00d5e4a.tar.bz2
forums-f6d1fa57b269370583dca8bf0f2f3347d00d5e4a.tar.xz
forums-f6d1fa57b269370583dca8bf0f2f3347d00d5e4a.zip
#5386 - make new/unread private message variables available (holding the number of said private messages)
git-svn-id: file:///svn/phpbb/trunk@7245 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/functions.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index 184da5c6fd..c244f686a1 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -3893,6 +3893,9 @@ function page_header($page_title = '', $display_online_list = true)
'PRIVATE_MESSAGE_INFO' => $l_privmsgs_text,
'PRIVATE_MESSAGE_INFO_UNREAD' => $l_privmsgs_text_unread,
+ 'S_USER_NEW_PRIVMSG' => $user->data['user_new_privmsg'],
+ 'S_USER_UNREAD_PRIVMSG' => $user->data['user_unread_privmsg'],
+
'SID' => $SID,
'_SID' => $_SID,
'SESSION_ID' => $user->session_id,