mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 21:38:54 +00:00
[ticket/13070] Use old 'template' class for template class hook
PHPBB3-13070
This commit is contained in:
parent
84e68b3a73
commit
d03be5ea5f
1 changed files with 3 additions and 3 deletions
|
@ -142,11 +142,11 @@ abstract class base implements template
|
|||
{
|
||||
global $phpbb_hook;
|
||||
|
||||
if (!empty($phpbb_hook) && $phpbb_hook->call_hook(array(__CLASS__, $method), $handle, $this))
|
||||
if (!empty($phpbb_hook) && $phpbb_hook->call_hook(array('template', $method), $handle, $this))
|
||||
{
|
||||
if ($phpbb_hook->hook_return(array(__CLASS__, $method)))
|
||||
if ($phpbb_hook->hook_return(array('template', $method)))
|
||||
{
|
||||
$result = $phpbb_hook->hook_return_result(array(__CLASS__, $method));
|
||||
$result = $phpbb_hook->hook_return_result(array('template', $method));
|
||||
return array($result);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue