I'm trying to install this hack, but I'm running into a problem with the first edit. :ermm: In global.php I'm supposed to change
PHP Code:
if (isset($showqueries)) {
$pagestarttime = microtime();
} else {
$pagestarttime = 0;
}
But in my global.php I have the following:
PHP Code:
if (isset($explain)) {
$showqueries=1;
}
if (isset($showqueries)) {
$pagestarttime=microtime();
}
Before I proceeded, I wanted to check here and see what I should be replacing.