1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-06 15:45:34 +02:00

[feature/template-engine] Delete _get_locator function.

It is no longer needed as locator is injected into template.

PHPBB3-9726
This commit is contained in:
Oleg Pudeyev 2011-08-13 23:47:24 -04:00
parent 7cfd4052c5
commit 41de09e408

View File

@ -488,17 +488,4 @@ class phpbb_template
}
include($file);
}
/**
* Retrieves the template locator object.
*
* This function is public for the benefit of bbcode implementation.
* It should not be considered part of template class's public API.
*
* @return phpbb_template_locator Template locator for this template
*/
public function _get_locator()
{
return $this->locator;
}
}