Edit this code, inside the vBMicroStats Global Hook:
Code:
// regular users template
$users_template = '<tr align="' . $stylevar['right'] . '">' . "\n";
$users_template .= ' <td class="tcat"' . iif($show['colspan'], ' colspan="' . $colspan . '"') . '>' . "\n";
$users_template .= ' <span class="smallfont">Page generated in ' . $total_time . ' seconds (' . $php_percent . ' - ' . $sql_percent . ') with ' . $query_count . ' queries</span>' . "\n";
$users_template .= ' </td>' . "\n";
$users_template .= '</tr>' . "\n";
// administrator template
$admin_template = '<tr align="' . $stylevar['right'] . '">' . "\n";
$admin_template .= ' <td class="alt1"' . iif($show['colspan'], ' colspan="' . $colspan . '"') . '>' . "\n";
$admin_template .= ' <span class="smallfont">' . $memory_status . $debug_status . $gzip_status . $server_status . $templates_status . '</span>' . "\n";
$admin_template .= ' </td>' . "\n";
$admin_template .= '</tr>' . "\n";
Debug mode is always OFF, unless you add this line into your config.php file:
$config['Misc']['debug'] = true;
This is more like a security feature, in case you forget about it...