Skip to content

Commit

Permalink
Change order of initialization in oidcUser class
Browse files Browse the repository at this point in the history
  • Loading branch information
sbreker committed Oct 10, 2024
1 parent 38392d9 commit 1fb6ee1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/arOidcPlugin/lib/oidcUser.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ public function initialize(sfEventDispatcher $dispatcher, sfStorage $storage, $o
{
$this->logger = sfContext::getInstance()->getLogger();

parent::initialize($dispatcher, $storage, $options);

if (null === $this->oidcClient) {
$this->setOidcClient(arOidc::getOidcInstance());
}

parent::initialize($dispatcher, $storage, $options);
}

/**
Expand Down

0 comments on commit 1fb6ee1

Please sign in to comment.