aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/template_executor.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/includes/template_executor.php')
-rw-r--r--phpBB/includes/template_executor.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/phpBB/includes/template_executor.php b/phpBB/includes/template_executor.php
index 9bbb3dca0d..32e4e9a7b4 100644
--- a/phpBB/includes/template_executor.php
+++ b/phpBB/includes/template_executor.php
@@ -10,6 +10,8 @@ interface phpbb_template_executor
{
/**
* Executes the template managed by this executor.
+ * @param phpbb_template_context $context Template context to use
+ * @param array $lang Language entries to use
*/
- public function execute();
+ public function execute($context, $lang);
}