From db257956aa02a2533577a4e4081c2502dbd3ee00 Mon Sep 17 00:00:00 2001 From: Oleg Pudeyev Date: Sun, 7 Aug 2011 19:17:22 -0400 Subject: [feature/template-engine] Corrected an error message in template locator. PHPBB3-9726 --- phpBB/includes/template/locator.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'phpBB') diff --git a/phpBB/includes/template/locator.php b/phpBB/includes/template/locator.php index e47548be23..35e33bb9e6 100644 --- a/phpBB/includes/template/locator.php +++ b/phpBB/includes/template/locator.php @@ -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]; } -- cgit v1.2.1