aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/report
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2018-02-22 19:49:00 +0100
committerMarc Alexander <admin@m-a-styles.de>2018-02-22 19:49:00 +0100
commit4b0a04b10991f151d492cf0a5edd84fc53725dc3 (patch)
tree211609e1b71f8b56c7fec856dfb48fcdcf6278be /phpBB/phpbb/report
parentf17bd9e1e0c9e01b892cbe18fb3f811c16f43508 (diff)
parent325b14550db96a5f6dc54de621a8bdac0e191ac6 (diff)
downloadforums-4b0a04b10991f151d492cf0a5edd84fc53725dc3.tar
forums-4b0a04b10991f151d492cf0a5edd84fc53725dc3.tar.gz
forums-4b0a04b10991f151d492cf0a5edd84fc53725dc3.tar.bz2
forums-4b0a04b10991f151d492cf0a5edd84fc53725dc3.tar.xz
forums-4b0a04b10991f151d492cf0a5edd84fc53725dc3.zip
Merge pull request #5138 from senky/ticket/15559
[ticket/15559] Fix wrongly assigned uid and bitfield
Diffstat (limited to 'phpBB/phpbb/report')
-rw-r--r--phpBB/phpbb/report/report_handler_pm.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/report/report_handler_pm.php b/phpBB/phpbb/report/report_handler_pm.php
index 2f2a697efc..774ca329ad 100644
--- a/phpBB/phpbb/report/report_handler_pm.php
+++ b/phpBB/phpbb/report/report_handler_pm.php
@@ -53,8 +53,8 @@ class report_handler_pm extends report_handler
'user_notify' => $user_notify,
'report_text' => $report_text,
'reported_post_text' => $this->report_data['message_text'],
- 'reported_post_uid' => $this->report_data['bbcode_bitfield'],
- 'reported_post_bitfield' => $this->report_data['bbcode_uid'],
+ 'reported_post_uid' => $this->report_data['bbcode_uid'],
+ 'reported_post_bitfield' => $this->report_data['bbcode_bitfield'],
'reported_post_enable_bbcode' => $this->report_data['enable_bbcode'],
'reported_post_enable_smilies' => $this->report_data['enable_smilies'],
'reported_post_enable_magic_url' => $this->report_data['enable_magic_url'],