N°7410 - Fix typo in template path

This commit is contained in:
Molkobain
2024-07-18 16:06:12 +02:00
parent 06c26c99bb
commit d32949d1d3
10 changed files with 10 additions and 10 deletions

View File

@@ -41,7 +41,7 @@ function DisplayWelcomePopup(WebPage $oP): void
$oWelcomePopupService = WelcomePopupService::GetInstance();
$aProvidersMessagesData = $oWelcomePopupService->GetMessages();
if (count($aProvidersMessagesData) > 0) {
TwigHelper::RenderIntoPage($oP, APPROOT."/", "templates/application/welcome_popup/layout", [
TwigHelper::RenderIntoPage($oP, APPROOT."/", "templates/application/welcome-popup/layout", [
"aProvidersMessagesData" => $aProvidersMessagesData,
"sEndpointAbsURIForAcknowledgeMessage" => Router::GetInstance()->GenerateUrl(WelcomePopupController::ROUTE_NAMESPACE . ".acknowledge_message"),
]);