Commit 79a28a1c authored by Hendrik Grahl's avatar Hendrik Grahl
Browse files

Issue #3023470: function provisionDrupalAccount shouln't return False if...

Issue #3023470: function provisionDrupalAccount shouln't return False if unable to createDrupalUser?
parent d492750c
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -179,7 +179,9 @@ class DrupalUserProcessor implements LdapUserAttributesInterface {
      $this->updateExistingAccountByPersistentUid($ldapUser, $accountFromPuid);
    }
    else {
      $this->createDrupalUser($ldapUser);
      if (!$this->createDrupalUser($ldapUser)) {
        return FALSE;
      }
    }
    return TRUE;
  }