Skip to content

Commit

Permalink
[BUGFIX] Fix page permissions SQL clause in Page-Utility (#1438)
Browse files Browse the repository at this point in the history
  • Loading branch information
infabo committed Jul 21, 2021
1 parent 0be75d0 commit 0af5cb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Utility/Page.php
Expand Up @@ -43,7 +43,7 @@ public static function extendPidListByChildren($pidList = '', $recursive = 0)
$storagePids = GeneralUtility::intExplode(',', $pidList);
foreach ($storagePids as $startPid) {
if ($startPid >= 0) {
$pids = $queryGenerator->getTreeList($startPid, $recursive, 0, 1);
$pids = $queryGenerator->getTreeList($startPid, $recursive);
if (strlen($pids) > 0) {
$recursiveStoragePids .= ',' . $pids;
}
Expand Down

0 comments on commit 0af5cb4

Please sign in to comment.