Skip to content

Commit

Permalink
[ticket/15559] Fix wrongly assigned uid and bitfield
Browse files Browse the repository at this point in the history
PHPBB3-15559
  • Loading branch information
senky committed Feb 19, 2018
1 parent d0143be commit 325b145
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions phpBB/phpbb/report/report_handler_pm.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ public function add_report($id, $reason_id, $report_text, $user_notify)
'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'],
Expand Down

0 comments on commit 325b145

Please sign in to comment.