diff options
author | Igor Wiedler <igor@wiedler.ch> | 2011-11-11 22:32:59 +0100 |
---|---|---|
committer | Igor Wiedler <igor@wiedler.ch> | 2011-11-11 22:34:45 +0100 |
commit | 2b3effb13c0f1d8322653147e5dcbc20ae36b418 (patch) | |
tree | 7c9b7d19eac961d5a1a602ae75e41bcf3c5cc51f /phpBB/includes/functions_privmsgs.php | |
parent | 39f6d583150bcd25ff7a780686ebd9c5d933b99e (diff) | |
download | forums-2b3effb13c0f1d8322653147e5dcbc20ae36b418.tar forums-2b3effb13c0f1d8322653147e5dcbc20ae36b418.tar.gz forums-2b3effb13c0f1d8322653147e5dcbc20ae36b418.tar.bz2 forums-2b3effb13c0f1d8322653147e5dcbc20ae36b418.tar.xz forums-2b3effb13c0f1d8322653147e5dcbc20ae36b418.zip |
[ticket/8616] Include old U_INBOX var for BC
PHPBB3-8616
Diffstat (limited to 'phpBB/includes/functions_privmsgs.php')
-rw-r--r-- | phpBB/includes/functions_privmsgs.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/includes/functions_privmsgs.php b/phpBB/includes/functions_privmsgs.php index b34b742d57..c40ceb088f 100644 --- a/phpBB/includes/functions_privmsgs.php +++ b/phpBB/includes/functions_privmsgs.php @@ -1688,8 +1688,9 @@ function pm_notification($mode, $author, $recipients, $subject, $message, $msg_i 'AUTHOR_NAME' => htmlspecialchars_decode($author), 'USERNAME' => htmlspecialchars_decode($addr['name']), - 'U_VIEW_MESSAGE' => generate_board_url() . "/ucp.$phpEx?i=pm&mode=view&p=$msg_id") - ); + 'U_INBOX' => generate_board_url() . "/ucp.$phpEx?i=pm&folder=inbox", + 'U_VIEW_MESSAGE' => generate_board_url() . "/ucp.$phpEx?i=pm&mode=view&p=$msg_id", + )); $messenger->send($addr['method']); } |