diff options
author | Jakub Senko <jakubsenko@gmail.com> | 2018-02-19 16:48:36 +0100 |
---|---|---|
committer | Jakub Senko <jakubsenko@gmail.com> | 2018-02-19 16:48:36 +0100 |
commit | 325b14550db96a5f6dc54de621a8bdac0e191ac6 (patch) | |
tree | 6fc94f7cada29eba1e2f6c3513073df1dfa4de14 | |
parent | d0143bec8830e709047443f73f79c0dce438e3fc (diff) | |
download | forums-325b14550db96a5f6dc54de621a8bdac0e191ac6.tar forums-325b14550db96a5f6dc54de621a8bdac0e191ac6.tar.gz forums-325b14550db96a5f6dc54de621a8bdac0e191ac6.tar.bz2 forums-325b14550db96a5f6dc54de621a8bdac0e191ac6.tar.xz forums-325b14550db96a5f6dc54de621a8bdac0e191ac6.zip |
[ticket/15559] Fix wrongly assigned uid and bitfield
PHPBB3-15559
-rw-r--r-- | phpBB/phpbb/report/report_handler_pm.php | 4 |
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'], |