aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2018-02-19 19:44:14 +0100
committerMarc Alexander <admin@m-a-styles.de>2018-02-19 19:44:14 +0100
commitc5f4ad24f94710fe6e7654dda28e20d426d0fbae (patch)
tree76086f750256cff3a4b66e9d8e528349a3d89560
parent961e241b2605800329b030faaf9609e80f22411e (diff)
parent692a770fc381e914e02db8e30448eb8252283a2f (diff)
downloadforums-c5f4ad24f94710fe6e7654dda28e20d426d0fbae.tar
forums-c5f4ad24f94710fe6e7654dda28e20d426d0fbae.tar.gz
forums-c5f4ad24f94710fe6e7654dda28e20d426d0fbae.tar.bz2
forums-c5f4ad24f94710fe6e7654dda28e20d426d0fbae.tar.xz
forums-c5f4ad24f94710fe6e7654dda28e20d426d0fbae.zip
Merge pull request #5137 from senky/ticket/15558
[ticket/15558] Fix wrongly assigned uid and bitfield
-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'],