summaryrefslogtreecommitdiffstats
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rw-r--r--index.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/index.php b/index.php
index d9b7c371..5fff7e5e 100644
--- a/index.php
+++ b/index.php
@@ -42,7 +42,7 @@ abstract class Page
{
$pageTitle = self::$module->getPageTitle();
if ($pageTitle !== false) {
- Render::setTitle($pageTitle);
+ Render::setTitle($pageTitle, false);
}
self::$instance->doRender();
}
@@ -136,6 +136,7 @@ if ($_SERVER['REQUEST_METHOD'] === 'POST') {
// AJAX Stuff? Just do so. Otherwise, run preprocessing
if (AJAX) {
+ ob_start('ob_gzhandler');
Page::ajax();
exit(0);
}