Skip to content
This repository was archived by the owner on Jan 11, 2023. It is now read-only.
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Classes/Controller/AbstractController.php
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,9 @@ public function injectGetPostVarAdapterFactory(Tx_PtExtlist_Domain_StateAdapter_
public function initializeAction()
{
parent::initializeAction();
$this->initFeUser();
if (!TYPO3_MODE === 'BE') {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't be that if (TYPO3_MODE !== 'BE') as TYPO3_MODE is not a boolean which could be negated.

$this->initFeUser();
}
$this->initListIdentifier();
$this->buildConfigurationBuilder();
$this->buildAndInitSessionPersistenceManager();
Expand Down