aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Senko <jakubsenko@gmail.com>2018-02-19 16:46:43 +0100
committerJakub Senko <jakubsenko@gmail.com>2018-02-19 16:46:43 +0100
commit692a770fc381e914e02db8e30448eb8252283a2f (patch)
tree60b18f1feacbc41a78e953d6989d21bf58234852 /phpBB/phpbb/report
parentMerge pull request #5084 from hubaishan/ticket/15510 (diff)
downloadphpbb-692a770fc381e914e02db8e30448eb8252283a2f.tar.gz
phpbb-692a770fc381e914e02db8e30448eb8252283a2f.tar.bz2
phpbb-692a770fc381e914e02db8e30448eb8252283a2f.zip
[ticket/15558] Fix wrongly assigned uid and bitfield
PHPBB3-15558
Diffstat (limited to 'phpBB/phpbb/report')
-rw-r--r--phpBB/phpbb/report/report_handler_post.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/report/report_handler_post.php b/phpBB/phpbb/report/report_handler_post.php
index 5574a16dc0..52f09683ce 100644
--- a/phpBB/phpbb/report/report_handler_post.php
+++ b/phpBB/phpbb/report/report_handler_post.php
@@ -59,8 +59,8 @@ class report_handler_post extends report_handler
'user_notify' => $user_notify,
'report_text' => $report_text,
'reported_post_text' => $this->report_data['post_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'],