you can make it so that only admins can see it by opening includes/page_tail.php
FIND
/* Un-comment the line below to restrict Admins only to view page generation info */ //if( ($userdata['session_logged_in']) and ($userdata['user_level'] == ADMIN) )//{ $gzip_text = ($board_config['gzip_compress']) ? 'GZIP enabled' ] + $mtime[0]; $endtime = $mtime; $gentime = round(($endtime - $starttime), 4); $sql_time = round($db->sql_time, 4); $sql_part = round($sql_time / $gentime * 100); $php_part = 100 - $sql_part; //}*/
REPLACE WITH
/* Un-comment the line below to restrict Admins only to view page generation info */ if( ($userdata['session_logged_in']) and ($userdata['user_level'] == ADMIN) ){ $gzip_text = ($board_config['gzip_compress']) ? 'GZIP enabled' ] + $mtime[0]; $endtime = $mtime; $gentime = round(($endtime - $starttime), 4); $sql_time = round($db->sql_time, 4); $sql_part = round($sql_time / $gentime * 100); $php_part = 100 - $sql_part; }
"Success is getting what you want. Happiness is wanting what you get." - Dale Carnegie