summaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rw-r--r--index.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/index.php b/index.php
index 06be1b05..8a11820e 100644
--- a/index.php
+++ b/index.php
@@ -40,6 +40,10 @@ abstract class Page
public static function render()
{
+ $pageTitle = self::$module->getPageTitle();
+ if ($pageTitle !== false) {
+ Render::setTitle($pageTitle);
+ }
self::$instance->doRender();
}