If you want to be able to use the new codemaxlines variable that is in RC3 so the boxes won't ever go past the point that the others do now, you need to add:
PHP Code:
// fetch height of block element
$blockheight = fetch_block_height($code);
right above:
PHP Code:
eval('$html = "' . fetch_template('bbcode_sql') . '";');
return $html;
in the included
functions_bbcodeparse_custom_created.php that comes with this hack. If you also add:
PHP Code:
global $vbphrase, $stylevar;
right under
PHP Code:
function handle_bbcode_sql($code)
{
in the same file, you can use the same code for the sql template for the box as the code template (with a few small modifications, of course) instead of hard-coding everything.