MyBB Community Forums

Full Version: [F] Inline post custom moderation
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
/moderation.php, line 1736 is:
$query = $db->simple_select("posts", "DISTINCT tid", "pid IN ($pids)", $options);

should be rather like:
$query = $db->simple_select("posts", "DISTINCT tid", "pid IN (".implode(',',$pids).")", $options);

otherwise, inline post custom moderation is impossible.
Thank you for your bug report.

This bug has been fixed in our internal code repository. Please note that the problem will not be fixed here until these forums are updated.