Skip to content

Commit eade58f

Browse files
committed
Change order of initialization in oidcUser class
1 parent 38392d9 commit eade58f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plugins/arOidcPlugin/lib/oidcUser.class.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ class oidcUser extends myUser implements Zend_Acl_Role_Interface
3232
*/
3333
public function initialize(sfEventDispatcher $dispatcher, sfStorage $storage, $options = [])
3434
{
35+
parent::initialize($dispatcher, $storage, $options);
36+
3537
$this->logger = sfContext::getInstance()->getLogger();
3638

3739
if (null === $this->oidcClient) {
3840
$this->setOidcClient(arOidc::getOidcInstance());
3941
}
40-
41-
parent::initialize($dispatcher, $storage, $options);
4242
}
4343

4444
/**

0 commit comments

Comments
 (0)