Skip to content
Snippets Groups Projects
Commit 59604038 authored by Dave Reid's avatar Dave Reid
Browse files

Issue #974494: Fixed PHP notice 'Undefined property: stdClass::$openid in...

Issue #974494: Fixed PHP notice 'Undefined property: stdClass::$openid in FeedsUserProcessor->entitySave()'.
parent 5f9ebacf
No related branches found
No related tags found
No related merge requests found
......@@ -60,7 +60,7 @@ class FeedsUserProcessor extends FeedsProcessor {
$account->mail = $account->mail . '_test';
}
user_save($account, (array) $account);
if ($account->uid && $account->openid) {
if ($account->uid && !empty($account->openid)) {
$authmap = array(
'uid' => $account->uid,
'module' => '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