Fix bug with mail_template_load function

This commit is contained in:
Dmitriy Simushev 2014-06-18 11:14:35 +00:00
parent 47880fa951
commit bde9f2eb00

View File

@ -84,7 +84,7 @@ function mail_template_load($name, $locale)
$template = false; $template = false;
} else { } else {
// Try to load the template for the default locale. // Try to load the template for the default locale.
$template = $this->loadMailTemplate($name, DEFAULT_LOCALE); $template = mail_template_load($name, DEFAULT_LOCALE);
} }
} }