]> git.mxchange.org Git - mailer.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Fri, 16 Sep 2022 13:56:29 +0000 (15:56 +0200)
committerRoland Häder <roland@mxchange.org>
Fri, 16 Sep 2022 13:56:29 +0000 (15:56 +0200)
- changed to mask

inc/template-functions.php

index 1cc687b0f606e33b07bd93d48cf2a9eeb5fbd99e..a59a577af2786b2361170ace4cb6b787f43fcdb2 100644 (file)
@@ -381,16 +381,19 @@ function loadTemplate ($template, $return = FALSE, $content = [], $compileCode =
                        } // END - if
                } elseif ((isAdmin()) || ((isInstalling()) && (!isInstalled()))) {
                        // Only admins shall see this warning or when installation mode is active
-                       $templateContent = '<div class="para">
+                       $templateContent = sprintf('<div class="para">
        {--TEMPLATE_404--}
 </div>
 <div class="para">
-       (' . $template . ')
+       (%s)
 </div>
 <div class="para">
        {--TEMPLATE_CONTENT--}:
-       <pre>' . print_r($content, TRUE) . '</pre>
-</div>';
+       <pre>%s</pre>
+</div>',
+                               $template,
+                               print_r($content, TRUE)
+                       );
                } else {
                        // No file!
                        $GLOBALS['template_eval']['html'][$template] = '404';