Skip to content
Snippets Groups Projects
Commit e8f4538e authored by Alex Barth's avatar Alex Barth
Browse files

Remove mail, name, valid_email_address() validators.

parent 88a9f3d5
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,8 @@
Feeds 7.x 2.0 XXXXXXXXXXXXXXXXXXX
---------------------------------
- Remove check for present name and mail. Needs to be solved on a more pluggable
level.
- FeedsTermProcessor: Do not filter taxonomy_term_data table by vid when
clearing.
- #932572 alex_b: FeedsTermProcessor: Batch term processing.
......
......@@ -40,12 +40,6 @@ class FeedsUserProcessor extends FeedsProcessor {
}
$account = $this->map($source, $parser_result, $account);
// Check if user name and mail are set, otherwise continue.
if (empty($account->name) || empty($account->mail) || !valid_email_address($account->mail)) {
$failed++;
continue;
}
// Save the user.
user_save($account, (array) $account);
if ($account->uid && $account->openid) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment