Chen
Mon 25th Nov '02, 5:28pm
This is a bug in both vB2 and vB3, trim() should not be used here:
if (strpos($code, '<?') === false)
{
$code = '<? ' . trim($code) . ' ?>';
$addedtags = 1;
}
Why? View this post's source and see for yourself.
if (strpos($code, '<?') === false)
{
$code = '<? ' . trim($code) . ' ?>';
$addedtags = 1;
}
Why? View this post's source and see for yourself.