aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2019-12-06 07:03:30 +0100
committerMarc Alexander <admin@m-a-styles.de>2019-12-06 07:03:30 +0100
commit41918b8afa031806b36dd20b6ee44a915033b8df (patch)
tree875f3860d397ddae4bb37b871ec2bd4e4c73a2a9 /phpBB/includes
parent3002cee42a922c0c90788aa9a8da5ad274773b6a (diff)
parente6c45623eaa5023d6372303158aa976a7e945626 (diff)
downloadforums-41918b8afa031806b36dd20b6ee44a915033b8df.tar
forums-41918b8afa031806b36dd20b6ee44a915033b8df.tar.gz
forums-41918b8afa031806b36dd20b6ee44a915033b8df.tar.bz2
forums-41918b8afa031806b36dd20b6ee44a915033b8df.tar.xz
forums-41918b8afa031806b36dd20b6ee44a915033b8df.zip
Merge pull request #5768 from 3D-I/ticket/16247
[ticket/16247] Quote PM has no identifier
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/ucp/ucp_pm_compose.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/phpBB/includes/ucp/ucp_pm_compose.php b/phpBB/includes/ucp/ucp_pm_compose.php
index 06baa279a5..87a8c91fd2 100644
--- a/phpBB/includes/ucp/ucp_pm_compose.php
+++ b/phpBB/includes/ucp/ucp_pm_compose.php
@@ -999,7 +999,10 @@ function compose_pm($id, $mode, $action, $user_folders = array())
{
$quote_attributes['post_id'] = $post['msg_id'];
}
-
+ if ($action === 'quote')
+ {
+ $quote_attributes['msg_id'] = $post['msg_id'];
+ }
/** @var \phpbb\language\language $language */
$language = $phpbb_container->get('language');
/** @var \phpbb\textformatter\utils_interface $text_formatter_utils */