aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/template
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2011-08-07 19:17:22 -0400
committerOleg Pudeyev <oleg@bsdpower.com>2011-08-07 19:17:22 -0400
commitdb257956aa02a2533577a4e4081c2502dbd3ee00 (patch)
tree403cc7cc834d06159872b5829a616e9959197fe3 /phpBB/includes/template
parentf3befa4b29b52680d5a32e197ea0776b8478d71d (diff)
downloadforums-db257956aa02a2533577a4e4081c2502dbd3ee00.tar
forums-db257956aa02a2533577a4e4081c2502dbd3ee00.tar.gz
forums-db257956aa02a2533577a4e4081c2502dbd3ee00.tar.bz2
forums-db257956aa02a2533577a4e4081c2502dbd3ee00.tar.xz
forums-db257956aa02a2533577a4e4081c2502dbd3ee00.zip
[feature/template-engine] Corrected an error message in template locator.
PHPBB3-9726
Diffstat (limited to 'phpBB/includes/template')
-rw-r--r--phpBB/includes/template/locator.php2
1 files changed, 1 insertions, 1 deletions
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];
}