In admin/user.php find: (note this code is from vB3 Gamma, however its probably still the same):
PHP Code:
$quicklinks = array_merge(
$quicklinks,
array(
Add above:
PHP Code:
// EDIT ########################################################################
// reputation edit link
if ($bbuserinfo['userid'] == X) {
$quicklinks["../$modcpdir/user.php?action=reputation&userid=$userid"] = $vbphrase['edit_reputation'];
}
You either need to remove the if statement if you want it for all admins or replace X with your userid. The link then appears in the drop down with the others like Email Password Reminder.