Passed
Push — master ( 356300...b0b364 )
by
unknown
40:51 queued 26:12
created
typo3/sysext/backend/Classes/Controller/Page/TreeController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -139,7 +139,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
typo3/sysext/recordlist/Classes/Browser/DatabaseBrowser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@
 block discarded – undo
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 !== '*') {
Please login to merge, or discard this patch.