I'm using wordpress MU to manage a system of blogs internally as a means of documentation. I've chosen it over just installing multiple blogs since it has a singular admin, and I can share user systems between multiple blogs (and change that users permissions depending on the blog).
I see that 'add a new user' has been killed in the Users.php file:
case 'adduser':
die( "This function is disabled. Add a user from your community." );
check_admin_referer();
$errors = add_user();
if(count($errors) == 0) {
header('Location: users.php?update=add');
die();
}
How do I go about re-enabling it? I see lyceum has this feature, however, it feels very buggy in comparison to wordpress mu, so I'd like mu to be my choice here. Thank you!!