NOTICE! Just incase you did not get Dewayne's e-mail- If you run
Vb 3.0.1, you will have problems when manually editing user profiles (the e-mail mentions the timeslip fields, but you will not be able to reset passwords and other user functions). The fix in the e-mail says to download the latest version on the hack and re-apply the SECOND edit to admincp/user.php
After looking at the code, just do this:
In your EDITED version of admincp/user.php
Find:
Code:
if ($_POST['do'] == 'update')
{
globalize($_POST, array(
'password',
'user',
'membergroup',
'modifyavatar',
'birthday',
'signature',
'modifyprofilepic',
'joindate',
'lastvisit',
'lastactivity',
'lastpost',
'options',
'referrer',
'tdban',
'threaddisplaymode' => INT
));
Replace with:
Code:
if ($_POST['do'] == 'update')
{
globalize($_POST, array(
'password',
'user',
'membergroup',
'modifyavatar',
'birthday',
'signature',
'modifyprofilepic',
'joindate',
'lastvisit',
'lastactivity',
'lastpost',
'options',
'referrer',
'tdban',
'threaddisplaymode' => INT,
'profile'
));
That's all. Now you will again be able to edit user profiles from your admin cpanel.
Thanks for the update DeWayne. I noticed these problems but figured I messed up the file when I edited it and didn't even think to ask about it. DOH!!
Was very relieved when I got your update e-mail.