I'm using 3.0.0, and I had to do something else, and still worked.
You see, I didn't find:
PHP Code:
if (DB_QUERIES)
{
But I did find:
PHP Code:
$pageendtime = microtime();
I just put:
PHP Code:
$patterns = array('/\>\s+\</', '/^\s*/m');
$replace = array('> <', '');
$vartext = preg_replace($patterns, $replace, $vartext);
AFTER what I had to find and it works just as you said. Now my forums are running faster. ^^;;