[feature/template-engine] Corrected an error message in template locator.

PHPBB3-9726
This commit is contained in:
Oleg Pudeyev 2011-08-07 19:17:22 -04:00
parent f3befa4b29
commit db257956aa

View file

@ -126,7 +126,7 @@ class phpbb_template_locator
{
if (!isset($this->filename[$handle]))
{
trigger_error("template->_tpl_load(): No file specified for handle $handle", E_USER_ERROR);
trigger_error("template locator: get_filename_for_handle: No file specified for handle $handle", E_USER_ERROR);
}
return $this->filename[$handle];
}