in de bbcode.php stond de waard van de image breedt niet goed, deze stond op 700.
de bbcode.php staat in de volgende map:
/phpBB3/includes/bbcode.php
$bbcode_hardtpl = array(
'b_open' => '<span style="font-weight: bold">',
'b_close' => '</span>',
'i_open' => '<span style="font-style: italic">',
'i_close' => '</span>',
'u_open' => '<span style="text-decoration: underline">',
'u_close' => '</span>',
'img' => '<img src="$1" alt="' . $user->lang['IMAGE'] . '" width="
700" />',
'size'=> '<span style="font-size: $1%; line-height: normal">$2</span>',
'color'=> '<span style="color: $1">$2</span>',
'email'=> '<a href="mailto:$1">$2</a>'
);
Ik heb nu de volgende regel veranderd:
van:
'img' => '<img src="$1" alt="' . $user->lang['IMAGE'] . '" width="
700" />',
naar:
'img' => '<img src="$1" alt="' . $user->lang['IMAGE'] . '" />',
het probleem is nu opgelost
