File /admin/users/add.php
around line 81:
remove:
// Check if the email already exists
$results = $database->query("SELECT user_id FROM ".TABLE_PREFIX."users WHERE email = '".$admin->add_slashes($_POST['email'])."'");
if($results->numRows() > 0) {
if(isset($MESSAGE['USERS']['EMAIL_TAKEN'])) {
$admin->print_error($MESSAGE['USERS']['EMAIL_TAKEN'], $js_back);
} else {
$admin->print_error($MESSAGE['USERS']['INVALID_EMAIL'], $js_back);
}
}
wich need to be removed after every update!!
Have fun,
John