aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
authorNils Adermann <naderman@naderman.de>2010-12-13 17:21:57 +0100
committerNils Adermann <naderman@naderman.de>2010-12-13 17:21:57 +0100
commit5e258a0a9021da3f9d830326f697fa05e86be877 (patch)
tree078d93d689b99495195eb9dcd82afacaec537127 /phpBB/includes
parent5d8ddc748000623b8e705b9434a4133cdd8fcc19 (diff)
parent053cf790a93e9cfb521f484901d79c72783f868f (diff)
downloadforums-5e258a0a9021da3f9d830326f697fa05e86be877.tar
forums-5e258a0a9021da3f9d830326f697fa05e86be877.tar.gz
forums-5e258a0a9021da3f9d830326f697fa05e86be877.tar.bz2
forums-5e258a0a9021da3f9d830326f697fa05e86be877.tar.xz
forums-5e258a0a9021da3f9d830326f697fa05e86be877.zip
Merge branch 'ticket/igorw/9924' into develop-olympus
* ticket/igorw/9924: [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 f1c8094a9b..6347633b14 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__)))
{