That's WAY more complex than the admin panel home thingy!
Too ****ing complex, for my taste.
This is what to do if you installed Freddie's Quick Stats hack, for your admin panel home:
Find in admin/index.php :
PHP Code:
$mysqlversion = $DB_site->query_first("SELECT VERSION() AS version");
ADD BELOW:
PHP Code:
$quotesmod = $DB_site->query_first("SELECT count(*) AS count FROM quotes WHERE mod='N'");
FIND:
PHP Code:
makelabelcode('New Posts Today:', $newposts['count']);
ADD BELOW:
PHP Code:
makelabelcode("Quotes awaiting <a href=\"quotes.php?s=$session[sessionhash]&action=moderate\">moderation</a>:", $quotesmod['count']);
(edited: I turned "moderation" into a link, even easier now ^_^)
Again, this is if you have Freddie's hack already installed. If not, then you'll have to do a manual output of some kind. The query to add doesn't need changing, though the output will probably need changing if you don't have Freddie's hack.
And with this, it'll display "Quotes awaiting moderation: [number]" in your Admin Panel Home.