aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/includes/template/filter.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/includes/template/filter.php b/phpBB/includes/template/filter.php
index 911f21ef00..3d39b3b4ed 100644
--- a/phpBB/includes/template/filter.php
+++ b/phpBB/includes/template/filter.php
@@ -95,6 +95,13 @@ class phpbb_template_filter extends php_user_filter
private $extension_manager;
/**
+ * Template compiler.
+ *
+ * @var phpbb_template_compile
+ */
+ private $template_compile;
+
+ /**
* Stream filter
*
* Is invoked for evey chunk of the stream, allowing us
@@ -156,6 +163,7 @@ class phpbb_template_filter extends php_user_filter
$this->locator = $this->params['locator'];
$this->phpbb_root_path = $this->params['phpbb_root_path'];
$this->extension_manager = $this->params['extension_manager'];
+ $this->template_compile = $this->params['template_compile'];
return true;
}