diff options
Diffstat (limited to 'phpBB/includes/emailer.php')
-rwxr-xr-x | phpBB/includes/emailer.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/emailer.php b/phpBB/includes/emailer.php index 0082efda22..b258f3ad8a 100755 --- a/phpBB/includes/emailer.php +++ b/phpBB/includes/emailer.php @@ -89,7 +89,7 @@ class emailer global $board_config; $phpbb_root_path = "./"; - $template_file = $phpbb_root_path . "language/email/" . $template_file . "_" . $board_config['default_lang'] . ".tpl"; + $template_file = $phpbb_root_path . "language/lang_" . $board_config['default_lang'] . "/email/" . $template_file . ".tpl"; if (!file_exists($template_file)) { message_die(GENERAL_ERROR, "Couldn't find template file: $template_file", "", __LINE__, __FILE__); |