diff options
author | Dark❶ <dark-1@users.noreply.github.com> | 2019-04-20 15:42:03 +0530 |
---|---|---|
committer | Dark❶ <dark-1@users.noreply.github.com> | 2019-04-20 15:42:03 +0530 |
commit | 0a3fb27d47740fc7e342fd98b4c91c099bb0b871 (patch) | |
tree | bb646217f7c05ed6d02a5020cea7ffb5a0b8acc8 /phpBB/includes/functions_privmsgs.php | |
parent | b76e5a9c184e2f35004d40fa5b35c36af81c426d (diff) | |
download | forums-0a3fb27d47740fc7e342fd98b4c91c099bb0b871.tar forums-0a3fb27d47740fc7e342fd98b4c91c099bb0b871.tar.gz forums-0a3fb27d47740fc7e342fd98b4c91c099bb0b871.tar.bz2 forums-0a3fb27d47740fc7e342fd98b4c91c099bb0b871.tar.xz forums-0a3fb27d47740fc7e342fd98b4c91c099bb0b871.zip |
[ticket/16023] Add core.message_history_modify_template_vars
PHPBB3-16023
Diffstat (limited to 'phpBB/includes/functions_privmsgs.php')
-rw-r--r-- | phpBB/includes/functions_privmsgs.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_privmsgs.php b/phpBB/includes/functions_privmsgs.php index 24ad5afeaf..9c4a504150 100644 --- a/phpBB/includes/functions_privmsgs.php +++ b/phpBB/includes/functions_privmsgs.php @@ -1966,7 +1966,7 @@ function submit_pm($mode, $subject, &$data_ary, $put_in_outbox = true) */ function message_history($msg_id, $user_id, $message_row, $folder, $in_post_mode = false) { - global $db, $user, $template, $phpbb_root_path, $phpEx, $auth; + global $db, $user, $template, $phpbb_root_path, $phpEx, $auth, $phpbb_dispatcher; // Select all receipts and the author from the pm we currently view, to only display their pm-history $sql = 'SELECT author_id, user_id |