1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-10 08:25:42 +02:00

[ticket/13070] Use old 'template' class for template class hook

PHPBB3-13070
This commit is contained in:
Marc Alexander 2014-09-22 20:03:55 +02:00
parent 84e68b3a73
commit d03be5ea5f

View File

@ -142,11 +142,11 @@ abstract class base implements template
{ {
global $phpbb_hook; 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); return array($result);
} }
} }