Commit 84429001 authored by Anthony Gautreau's avatar Anthony Gautreau
Browse files

Fix mauvais comparateur

parent e1305e40
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -156,7 +156,7 @@ class Shib extends AbstractAdapter
         * Si on souhaite que l'IDP Shibboleth gère la déconnexion
         * malgré qu'il puisse ne pas rediriger correctement (voir plus bas).
         */
        if ($this->moduleOptions->getShib()['idp_logout'] && $storage->getType() == 'shib') {
        if ($this->moduleOptions->getShib()['idp_logout'] && $storage->getType() === 'shib') {
            // URL vers laquelle on redirige après déconnexion
            $returnUrl = $this->router->assemble([], [
                'name' => 'zfcuser/logout',