To update from v1.1 to v1.2, do the following:
In functions.php, find:
PHP Code:
$mstemplates = 'NO Uncached Templates | ';
if ($_TEMPLATEQUERIES)
{
$mstemplates = '<b>' . sizeof($_TEMPLATEQUERIES) . '</b> Uncached ';
$mstemplates .= iif(sizeof($_TEMPLATEQUERIES) != '1', 'Templates', 'Template') . ' | ';
}
REPLACE it with:
PHP Code:
$mstemplates = '<select size="1" style="font-size: 10px">' . "\n";
if ($_TEMPLATEQUERIES)
{
$mstemplates .= '<option>' . sizeof($_TEMPLATEQUERIES) . ' Uncached Template';
$mstemplates .= iif(sizeof($_TEMPLATEQUERIES) != '1', 's') . '</option>';
if (is_array($tempusagecache))
{
global $vbcollapse;
ksort($tempusagecache);
foreach ($tempusagecache AS $tempname => $times)
{
if ($_TEMPLATEQUERIES["$tempname"])
{
$mstemplates .= '<option class="alt2">' . $tempname . ' (' . $times . ')</option>';
}
else
{
$mstemplates .= '<option>' . $tempname . ' (' . $times . ')</option>';
}
}
}
}
else
{
$mstemplates .= '<option>NO Uncached Templates</option>';
}
$mstemplates .= '</select>';
Thanks, Floren, for the update. I only posted this to help you out with all of the messages you'll get wanting to know how to update this great hack.