aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2003-10-12 09:16:33 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2003-10-12 09:16:33 +0000
commitf559ce8e934717825d129134c910f969b5055c2e (patch)
tree785dcbfcf8bb71d00d319fde4331783491bef015 /phpBB
parent98bd5b74f274925bd50aaefc894c3b4927d2ac1a (diff)
downloadforums-f559ce8e934717825d129134c910f969b5055c2e.tar
forums-f559ce8e934717825d129134c910f969b5055c2e.tar.gz
forums-f559ce8e934717825d129134c910f969b5055c2e.tar.bz2
forums-f559ce8e934717825d129134c910f969b5055c2e.tar.xz
forums-f559ce8e934717825d129134c910f969b5055c2e.zip
*** empty log message ***
git-svn-id: file:///svn/phpbb/trunk@4574 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/template.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/template.php b/phpBB/includes/template.php
index 79042f6156..8948e206d2 100644
--- a/phpBB/includes/template.php
+++ b/phpBB/includes/template.php
@@ -221,7 +221,7 @@ class template
// Try and open template for read
if (!($fp = @fopen($this->files[$handle], 'r')))
{
- trigger_error("template->_tpl_load(): File $filename does not exist or is empty", E_USER_ERROR);
+ trigger_error("template->_tpl_load(): File " . $this->files[$handle] . " does not exist or is empty", E_USER_ERROR);
}
$this->compiled_code[$handle] = $this->compile(trim(@fread($fp, filesize($this->files[$handle]))));