FluidTYPO3 / flux

TYPO3 extension Flux: Dynamic Fluid FlexForms
https://fluidtypo3.org
148 stars 214 forks source link

BUG: copy a page in the pagetree is broken #2138

Closed jgreiner closed 9 months ago

jgreiner commented 9 months ago

flux version: 10.0.6 and dev-development typo3: 11.5.31

If I copy a page in the pagetree I get following error:

Argument 1 passed to FluidTYPO3\Flux\Service\PageService::getPageTemplateConfiguration() must be of the type int, null given, called in flux/Classes/Provider/PageProvider.php on line 87

as a quickfix to get copying pages work again, I changed PageService.php Line 62 from:

public function getPageTemplateConfiguration(int $pageUid): ?array

to:

public function getPageTemplateConfiguration(?int $pageUid): ?array