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

@@ -20,7 +20,7 @@ use utils;
*/
class Message {
/** @var string Default TWIG template */
protected const DEFAULT_TWIG_TEMPLATE_REL_PATH = 'templates/application/welcome_popup/templates/left-title-description-right-illustration.html.twig';
protected const DEFAULT_TWIG_TEMPLATE_REL_PATH = 'templates/application/welcome-popup/templates/left-title-description-right-illustration.html.twig';
/** @var string Unique ID of the message within its provider */
protected readonly string $sId;

View File

@@ -38,7 +38,7 @@ class MessageFactory {
$sIllustrationAbsURI,
[],
$iImportance,
"templates/application/welcome_popup/templates/left-title-description-right-illustration.html.twig"
"templates/application/welcome-popup/templates/left-title-description-right-illustration.html.twig"
);
}
@@ -61,7 +61,7 @@ class MessageFactory {
$sIllustrationAbsURI,
[],
$iImportance,
"templates/application/welcome_popup/templates/left-illustration-right-title-description.html.twig"
"templates/application/welcome-popup/templates/left-illustration-right-title-description.html.twig"
);
}
@@ -74,7 +74,7 @@ class MessageFactory {
$sIllustrationAbsURI,
[],
$iImportance,
"templates/application/welcome_popup/templates/left-illustration-as-svg-markup-right-title-description.html.twig"
"templates/application/welcome-popup/templates/left-illustration-as-svg-markup-right-title-description.html.twig"
);
}
@@ -87,7 +87,7 @@ class MessageFactory {
$sIllustrationAbsURI,
[],
$iImportance,
"templates/application/welcome_popup/templates/left-title-description-right-illustration-as-svg-markup.html.twig"
"templates/application/welcome-popup/templates/left-title-description-right-illustration-as-svg-markup.html.twig"
);
}