]> git.mxchange.org Git - core.git/blobdiff - framework/main/classes/commands/html/class_HtmlStatusCommand.php
Continued:
[core.git] / framework / main / classes / commands / html / class_HtmlStatusCommand.php
index e829e11a7c7dea9634d0ffff18bfc4c64805c341..485ca585e63d70985818beecf930943db8621090 100644 (file)
@@ -3,6 +3,7 @@
 namespace Org\Mxchange\CoreFramework\Command\Status;
 
 // Import framework stuff
+use Org\Mxchange\CoreFramework\Bootstrap\FrameworkBootstrap;
 use Org\Mxchange\CoreFramework\Command\BaseCommand;
 use Org\Mxchange\CoreFramework\Command\Commandable;
 use Org\Mxchange\CoreFramework\Controller\Controller;
@@ -103,7 +104,7 @@ class HtmlStatusCommand extends BaseCommand implements Commandable {
                $this->getTemplateInstance()->loadCodeTemplate($masterTemplate);
 
                // Set title
-               $this->getTemplateInstance()->assignVariable('title', $this->getLanguageInstance()->getMessage('page_status_title'));
+               $this->getTemplateInstance()->assignVariable('title', FrameworkBootstrap::getLanguageInstance()->getMessage('page_status_title'));
 
                // Construct the menu in every command. We could do this in BaseCommand class. But this means
                // *every* command has a navigation system and that is want we don't want.