]> git.mxchange.org Git - shipsimu.git/blobdiff - inc/classes/main/commands/web/class_WebLoginFailedCommand.php
Packager script for latest dev version added, misc fixes, captcha verifier filter...
[shipsimu.git] / inc / classes / main / commands / web / class_WebLoginFailedCommand.php
index 0d1d068982c5e9a921a55c70a8c88ac30fcc9282..cb17816ce45f8fe95be5da65c0e9603dd00ae015 100644 (file)
@@ -76,24 +76,24 @@ class WebLoginFailedCommand extends BaseCommand implements Commandable {
                $masterTemplate = $appInstance->getMasterTemplate();
 
                // Load header template
-               $templateInstance->loadCodeTemplate("header");
+               $templateInstance->loadCodeTemplate('header');
 
                // Compile and assign it with a variable
                $templateInstance->compileTemplate();
-               $templateInstance->assignTemplateWithVariable("header", "header");
+               $templateInstance->assignTemplateWithVariable('header', 'header');
 
                // Load footer template
-               $templateInstance->loadCodeTemplate("footer");
+               $templateInstance->loadCodeTemplate('footer');
 
                // Compile and assign it with a variable
                $templateInstance->compileTemplate();
-               $templateInstance->assignTemplateWithVariable("footer", "footer");
+               $templateInstance->assignTemplateWithVariable('footer', 'footer');
 
                // Load the login_failed template
-               $templateInstance->loadCodeTemplate("login_failed");
+               $templateInstance->loadCodeTemplate('login_failed');
 
                // Assign the login_failed template with the master template as a content ... ;)
-               $templateInstance->assignTemplateWithVariable("login_failed", "content");
+               $templateInstance->assignTemplateWithVariable('login_failed', 'content');
 
                // Load the master template
                $templateInstance->loadCodeTemplate($masterTemplate);