Skip to content

Commit

Permalink
Merge pull request #38 from beatrycze-volk/action-return
Browse files Browse the repository at this point in the history
[BUGFIX] Fix return in `dialogAction`
  • Loading branch information
beatrycze-volk authored Oct 7, 2024
2 parents 8f17493 + aa0d152 commit 60bc378
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Controller/ExtendController.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public function dialogAction()
// check if fe_user exists OR cookie for private usage is set
// return empty string
if ($user || $GLOBALS["TSFE"]->fe_user->getKey("ses", $this->settings['dialog']['cookieName'])) {
return '';
return;
}

//get request arguments
Expand Down

0 comments on commit 60bc378

Please sign in to comment.