@@ -139,7 +139,7 @@ |
||
139 | 139 | } |
140 | 140 | if ($request->getQueryParams()['alternativeEntryPoints'] ?? false) { |
141 | 141 | $this->alternativeEntryPoints = $request->getQueryParams()['alternativeEntryPoints']; |
142 | - $this->alternativeEntryPoints = array_filter($this->alternativeEntryPoints, function ($pageId) { |
|
142 | + $this->alternativeEntryPoints = array_filter($this->alternativeEntryPoints, function($pageId) { |
|
143 | 143 | return $this->getBackendUser()->isInWebMount($pageId) !== null; |
144 | 144 | }); |
145 | 145 | $this->alternativeEntryPoints = array_map('intval', $this->alternativeEntryPoints); |
@@ -77,7 +77,7 @@ |
||
77 | 77 | public function render() |
78 | 78 | { |
79 | 79 | $this->modTSconfig = BackendUtility::getPagesTSconfig((int)$this->expandPage)['mod.']['web_list.'] ?? []; |
80 | - [, , , $allowedTables] = explode('|', $this->bparams); |
|
80 | + [,,, $allowedTables] = explode('|', $this->bparams); |
|
81 | 81 | |
82 | 82 | $withTree = true; |
83 | 83 | if ($allowedTables !== '' && $allowedTables !== '*') { |