Yourwelcome. You will want to find:
PHP Code:
$debughtml = '<center><span class="smallfont">Page generated in <b>' . $totaltime . '</b> seconds with <b>' . $vbulletin->db->querycount . '</b> queries';
if ($vbulletin->userinfo['usergroupid'] == 6) {
...
}
$debughtml .= "</span></center>";
And make it:
PHP Code:
if ($vbulletin->userinfo['usergroupid'] == 6) {
$debughtml = '<center><span class="smallfont">Page generated in <b>' . $totaltime . '</b> seconds with <b>' . $vbulletin->db->querycount . '</b> queries';
...
$debughtml .= "</span></center>";
}
I would post more detailed instructions but dinner is ready and I am starving. Let me know if this helps.