Quote:
Originally Posted by mtha
this is not a complicated hack, and it should not do any harm to your forum, except for the includes/adminfunctions_user.php when you change user's profile from AdminCP.
Hope you sort things out 
|
OK, if you want to add this same functionality, in the first page of your AdminCP (where you are normally given the option to search by the user name in the Quick User Finder), do the followings:
Open file admincp/index.php, and find:
PHP Code:
print_label_row($vbphrase['quick_user_finder'], '
Right above it, add:
PHP Code:
print_label_row($vbphrase['userid'], '
<form action="user.php" method="post" style="display:inline">
<input type="hidden" name="s" value="' . $session['sessionhash'] . '" />
<input type="hidden" name="do" value="find" />
<input type="text" class="bginput" name="user[userid]" tabindex="1" size="30" />
<input type="submit" value="' . $vbphrase['find'] . '" class="button" tabindex="1" />
</form>
', '', 'top', 'user[userid]');
Just a small mod, to make our lives easier.
Rgds
-------------
John