Skip to content

Commit

Permalink
[BUGFIX] Change function name
Browse files Browse the repository at this point in the history
  • Loading branch information
einpraegsam committed Mar 7, 2024
1 parent d22c631 commit 91e0e94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Domain/Repository/PageRepository.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function findAllNewsletterPages(): array
->fetchAllAssociative();
if (BackendUserUtility::isAdministrator() === false) {
foreach ($rows as $key => $row) {
if ($this->isAuthenticated($row) === false) {
if ($this->isAuthenticatedForPageRow($row) === false) {
unset($rows[$key]);
}
}
Expand Down

0 comments on commit 91e0e94

Please sign in to comment.