User login (non-guest) basicly finished, news stubs added, registration and final...
[shipsimu.git] / inc / classes / main / commands / web / class_WebRegisterCommand.php
index df504999875b2368fce140f38b2f4c102f80e3e5..f073baa8f73f5e038f4fa03febd114ebc1044606 100644 (file)
@@ -93,19 +93,17 @@ class WebRegisterCommand extends BaseCommand implements Commandable {
                $templateInstance->assignTemplateWithVariable("footer", "footer");
 
                // Load the register template
-               $templateInstance->loadCodeTemplate("register");
+               $templateInstance->loadCodeTemplate("register_form");
 
                // Assign the register template with the master template as a content ... ;)
                $templateInstance->compileTemplate();
-               $templateInstance->assignTemplateWithVariable("register", "content");
+               $templateInstance->assignTemplateWithVariable("register_form", "content");
 
                // Load the master template
                $templateInstance->loadCodeTemplate($masterTemplate);
 
                // Set title
-               $title = ucfirst($requestInstance->getRequestElement("page"));
-               if (empty($title)) $title = "Register";
-               $templateInstance->assignVariable('title', $title);
+               $templateInstance->assignVariable('title', $this->getLanguageInstance()->getMessage('page_register_title'));
 
                // ... and all variables. This should be merged together in a pattern
                // to make things easier. A cache mechanism should be added between