diff options
author | Bart van Bragt <bartvb@users.sourceforge.net> | 2005-01-11 20:58:48 +0000 |
---|---|---|
committer | Bart van Bragt <bartvb@users.sourceforge.net> | 2005-01-11 20:58:48 +0000 |
commit | 0b91fffe8b49454399eb1bb647f8c1d1bfb99f62 (patch) | |
tree | f098577f6837ec5da4ff2bd36e2a3ccc8e98d336 /phpBB/includes/functions.php | |
parent | 17aeca1cb5fa9afe3f31b6a6e78073f7cb363e70 (diff) | |
download | forums-0b91fffe8b49454399eb1bb647f8c1d1bfb99f62.tar forums-0b91fffe8b49454399eb1bb647f8c1d1bfb99f62.tar.gz forums-0b91fffe8b49454399eb1bb647f8c1d1bfb99f62.tar.bz2 forums-0b91fffe8b49454399eb1bb647f8c1d1bfb99f62.tar.xz forums-0b91fffe8b49454399eb1bb647f8c1d1bfb99f62.zip |
Fixed small PM issue in header
git-svn-id: file:///svn/phpbb/trunk@5055 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions.php')
-rw-r--r-- | phpBB/includes/functions.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php index cc9e855550..e6f6abac48 100644 --- a/phpBB/includes/functions.php +++ b/phpBB/includes/functions.php @@ -1715,7 +1715,7 @@ function page_header($page_title = '') 'L_INDEX' => $user->lang['FORUM_INDEX'], 'L_ONLINE_EXPLAIN' => $l_online_time, - 'U_PRIVATEMSGS' => "{$phpbb_root_path}ucp.$phpEx$SID&i=" . (($user->data['user_new_privmsg'] || $l_privmsgs_text_unread) ? 'unread' : 'view_messages'), + 'U_PRIVATEMSGS' => "{$phpbb_root_path}ucp.$phpEx$SID&i=pm&mode=view_messages", 'U_RETURN_INBOX' => "{$phpbb_root_path}ucp.$phpEx$SID&i=pm&folder=inbox", 'U_POPUP_PM' => "{$phpbb_root_path}ucp.$phpEx$SID&i=pm&mode=popup", 'U_MEMBERLIST' => "{$phpbb_root_path}memberlist.$phpEx$SID", @@ -1822,4 +1822,4 @@ function page_footer() exit; } -?>
\ No newline at end of file +?> |