Open admincp/index.php and find:
Code:
print_cells_row(array(
$vbphrase['new_threads_today'], vb_number_format($newthreads['count']),
$vbphrase['threads_awaiting_moderation'] . construct_link_code($vbphrase['view'], "../$modcpdir/moderate.php?$session[sessionurl]do=posts"), vb_number_format($threadcount['count']),
), 0, 0, -4, 'top', 1);
Add after
Code:
print_cells_row(array(
"", "",
"Quotes Awaiting Moderation" . construct_link_code($vbphrase['view'], "http://www.kydsm.com/admincp/quoteadmin.php?do=moderate"), vb_number_format($quotecount['total']),
), 0, 0, -4, 'top', 1);
Then find:
Code:
$threadcount = $DB_site->query_first("SELECT COUNT(*) AS count FROM " . TABLE_PREFIX . "moderation WHERE type='thread'");
And add after:
Code:
$quotecount = $DB_site->query_first("SELECT count( * ) AS total FROM `quotes` WHERE approved =0");