1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-04-13 20:32:11 +02:00

[ticket/15558] Fix wrongly assigned uid and bitfield

PHPBB3-15558
This commit is contained in:
Jakub Senko 2018-02-19 16:46:43 +01:00
parent d0143bec88
commit 692a770fc3
No known key found for this signature in database
GPG Key ID: 6A7C328CD66EC21E

View File

@ -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'],