the Sandman |
01-19-2006 10:00 PM |
Add [View] link to New Users Today (AdminCP Quick Stats)
Logician coded this for me to use on my board, and gave me permission to post it here. :) This simple modification adds a [View] link to the "New Users Today" line in the AdminCP Quick Stats box. I use it quite often and I thought some of you might like to try it as well.
Edit admincp/index.php:
Find:
PHP Code:
$vbphrase['new_users_today'], vb_number_format($newusers['count']),
Replace it with:
PHP Code:
$vbphrase['new_users_today'], vb_number_format($newusers['count']) . ' ' .
construct_link_code($vbphrase['view'],
"user.php?$session[sessionurl]do=find&orderby=joindate&direction=DESC&limitn
umber=30"),
(Note: This actually does not list today's members, it lists the last 30 members registered!)
|