Skip to content

Commit

Permalink
Remove status check in getUserFE
Browse files Browse the repository at this point in the history
  • Loading branch information
Baachi committed Jun 27, 2019
1 parent 70d8dae commit c939f1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Authentication/SamlAuth.php
Expand Up @@ -34,7 +34,7 @@ public function __construct()

public function getUser()
{
if ('getUserFE' === $this->mode && 'login' !== $this->login['status'] && 'logout' !== $this->login['status']) {
if ('getUserFE' === $this->mode && 'logout' !== $this->login['status']) {
if (null !== GeneralUtility::_POST('SAMLResponse')) {
return $this->pObj->getRawUserByUid($this->receive()->getUid());
} else {
Expand Down

0 comments on commit c939f1c

Please sign in to comment.