mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/11763] Add missing variable when reporting a PM to avoid SQL Error
PHPBB3-11763
This commit is contained in:
parent
78623bf2ff
commit
71ababe6fb
1 changed files with 4 additions and 3 deletions
|
@ -139,9 +139,10 @@ else
|
||||||
|
|
||||||
$reported_post_text = $report_data['message_text'];
|
$reported_post_text = $report_data['message_text'];
|
||||||
$reported_post_bitfield = $report_data['bbcode_bitfield'];
|
$reported_post_bitfield = $report_data['bbcode_bitfield'];
|
||||||
$reported_post_enable_bbcode = $report_data['reported_post_enable_bbcode'];
|
$reported_post_uid = $report_data['bbcode_uid'];
|
||||||
$reported_post_enable_smilies = $report_data['reported_post_enable_smilies'];
|
$reported_post_enable_bbcode = $report_data['enable_bbcode'];
|
||||||
$reported_post_enable_magic_url = $report_data['reported_post_enable_magic_url'];
|
$reported_post_enable_smilies = $report_data['enable_smilies'];
|
||||||
|
$reported_post_enable_magic_url = $report_data['enable_magic_url'];
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($config['enable_post_confirm'] && !$user->data['is_registered'])
|
if ($config['enable_post_confirm'] && !$user->data['is_registered'])
|
||||||
|
|
Loading…
Add table
Reference in a new issue