aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/includes/functions_messenger.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_messenger.php b/phpBB/includes/functions_messenger.php
index 13d604c1e9..50d8ae8fc6 100644
--- a/phpBB/includes/functions_messenger.php
+++ b/phpBB/includes/functions_messenger.php
@@ -124,13 +124,13 @@ class messenger
if (!file_exists($tpl_file))
{
- trigger_error("Could not find email template file [ $template_file ]", E_USER_ERROR);
+ trigger_error("Could not find email template file [ $tpl_file ]", E_USER_ERROR);
}
}
if (!($fd = @fopen($tpl_file, 'r')))
{
- trigger_error("Failed opening template file [ $template_file ]", E_USER_ERROR);
+ trigger_error("Failed opening template file [ $tpl_file ]", E_USER_ERROR);
}
$this->tpl_msg[$template_lang . $template_file] = fread($fd, filesize($tpl_file));