diff options
author | Yuriy Rusko <github@rusko.net> | 2014-05-28 01:02:39 +0200 |
---|---|---|
committer | Yuriy Rusko <github@rusko.net> | 2014-05-28 01:02:39 +0200 |
commit | 2a42aee8acfcab79b0dd43572b9da2c4dd8a288a (patch) | |
tree | 50400df541c6ac30ecf894830012b7a7c28b45fc /phpBB/includes/functions_messenger.php | |
parent | 1d61bcedfd1882f84d102c523a354a8c4ae69336 (diff) | |
parent | 08c01b7cee629701dc62b32b03eb5543e8c9d196 (diff) | |
download | forums-2a42aee8acfcab79b0dd43572b9da2c4dd8a288a.tar forums-2a42aee8acfcab79b0dd43572b9da2c4dd8a288a.tar.gz forums-2a42aee8acfcab79b0dd43572b9da2c4dd8a288a.tar.bz2 forums-2a42aee8acfcab79b0dd43572b9da2c4dd8a288a.tar.xz forums-2a42aee8acfcab79b0dd43572b9da2c4dd8a288a.zip |
Merge remote-tracking branch 'upstream/develop-ascraeus' into ticket/12594
Diffstat (limited to 'phpBB/includes/functions_messenger.php')
-rw-r--r-- | phpBB/includes/functions_messenger.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/phpBB/includes/functions_messenger.php b/phpBB/includes/functions_messenger.php index d170a689b6..3657a89aa0 100644 --- a/phpBB/includes/functions_messenger.php +++ b/phpBB/includes/functions_messenger.php @@ -255,7 +255,12 @@ class messenger } } - $this->set_template_paths($template_lang . '_email', $template_paths); + $this->set_template_paths(array( + array( + 'name' => $template_lang . '_email', + 'ext_path' => 'language/' . $template_lang . '/email' + ), + ), $template_paths); $this->template->set_filenames(array( 'body' => $template_file . '.txt', |