I fixed this problem by deleting the following code in wpbb-functions.php around line #1319
I’m pretty lame in php, so try this with caution!
if(!class_exists('parse_message'))
{
include($phpbb_root_path . 'includes/message_parser.' . $phpEx);
}
$message_parser = new parse_message($text);
$message_parser->parse($allow_bbcode, $allow_urls, $allow_smilies);
$text = $message_parser->message;
$uid = $message_parser->bbcode_uid;
// If the bbcode_bitfield is empty, there is no need for the uid to be stored.
if (!$message_parser->bbcode_bitfield)
{
$uid = '';
}
$bitfield = $message_parser->bbcode_bitfield;
return;
Seems to work fine now. Posts are published in the forum, just the [caption] tags are not parsed, which is a bit ugly, but I can live with it 😉 Still hope someone offers a better way to get rid of this issue!