Skip to content

Commit

Permalink
Update AbstractFluxController.php
Browse files Browse the repository at this point in the history
added fallback for php 8 compatibility
  • Loading branch information
itx-stefanie-doell authored Oct 7, 2022
1 parent 4ccb120 commit a3c3c1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Controller/AbstractFluxController.php
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ protected function performSubRendering($extensionName, $controllerName, $actionN
'request' => $this->request,
'response' => $response,
'extensionName' => $extensionName,
'controllerClassName' => $foreignControllerClass,
'controllerClassName' => ($foreignControllerClass ?? null),
'controllerActionName' => $actionName
]
)['content'];
Expand Down

0 comments on commit a3c3c1a

Please sign in to comment.