-
Bug
-
Resolution: Fixed
-
Major
-
3.2.2
-
None
-
None
\phpbb\report\report_handler_post.php:62
Data too long for column 'reported_post_uid' at row 1 [1406]
The code:
'reported_post_uid' => $this->report_data['bbcode_bitfield'],
'reported_post_bitfield' => $this->report_data['bbcode_uid'],
should be written like this:
'reported_post_uid' => $this->report_data['bbcode_uid'],
'reported_post_bitfield' => $this->report_data['bbcode_bitfield'],