1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-24 20:13:22 +01:00

Merge pull request #2982 from marc1706/ticket/13070

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

* marc1706/ticket/13070:
  [ticket/13070] Use old 'template' class for template class hook
This commit is contained in:
Andreas Fischer 2014-09-23 23:25:59 +02:00
commit 34aad4046f

View File

@ -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);
}
}