As always, this is a wonderful hack,
Logician! I've actually used it for a while, but only now got around to re-adding it to my upgraded forum.
Quick question about the fix code posted in #205. Is there an extra space in the replacement line?
Quote:
Originally Posted by Logician
Find:
PHP Code:
$matches14[2]=bbcodeparse(trim($matches14[2]));
Replace it as:
PHP Code:
$matches14[2]= bbcodeparse2(trim($matches14[2]),1,1,1,1);
|
My functions.php stopped working when I used the above replacement code.
Instead, what worked for me was:
PHP Code:
$matches14[2]=bbcodeparse2(trim($matches14[2]),1,1,1,1);
Dunno if it's just me, but anyway, I thought it might help anyone who had the same problem.

Thanks again for the great work,
Logician!