aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2010-12-13 17:22:05 +0100
committerNils Adermann <naderman@naderman.de>2010-12-13 17:22:05 +0100
commit8b9b1f118726e9fb088737129a02e9959ac1adc4 (patch)
tree55ba94872439793074672323fac87b4710554f61 /phpBB/includes
parent18f74a7e10b01f4f6f916e2baa814b27b31fc8a9 (diff)
parent5e258a0a9021da3f9d830326f697fa05e86be877 (diff)
downloadforums-8b9b1f118726e9fb088737129a02e9959ac1adc4.tar
forums-8b9b1f118726e9fb088737129a02e9959ac1adc4.tar.gz
forums-8b9b1f118726e9fb088737129a02e9959ac1adc4.tar.bz2
forums-8b9b1f118726e9fb088737129a02e9959ac1adc4.tar.xz
forums-8b9b1f118726e9fb088737129a02e9959ac1adc4.zip
Merge branch 'develop-olympus' into develop
* develop-olympus: [ticket/9924] Pass template instance into $template->display hook
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/template.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/template.php b/phpBB/includes/template.php
index b009576aee..643a86cde9 100644
--- a/phpBB/includes/template.php
+++ b/phpBB/includes/template.php
@@ -205,7 +205,7 @@ class template
{
global $user, $phpbb_hook;
- if (!empty($phpbb_hook) && $phpbb_hook->call_hook(array(__CLASS__, __FUNCTION__), $handle, $include_once))
+ if (!empty($phpbb_hook) && $phpbb_hook->call_hook(array(__CLASS__, __FUNCTION__), $handle, $include_once, $this))
{
if ($phpbb_hook->hook_return(array(__CLASS__, __FUNCTION__)))
{