Skip to content

Commit

Permalink
[TASK] Merge master-branch and code style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
davkraid committed Jan 6, 2025
1 parent 860e02f commit c446bcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Verdict/Redirect.php
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ private function redirectToPage(): ?RedirectResponse
$page = GeneralUtility::makeInstance(PageRepository::class)->getPageOverlay($page, $targetLanguageId);

// Overlay record does not exist
$allowFallback = (bool) ($this->configuration['allowFallback'] ?? false);
$allowFallback = (bool)($this->configuration['allowFallback'] ?? false);
if (!isset($page['_LOCALIZED_UID']) && $allowFallback === false) {
$this->logger->info(sprintf('There is no page overlay for page %d and language %d', $page['uid'], $targetLanguageId));

Expand Down

0 comments on commit c446bcb

Please sign in to comment.