From bde9f2eb002b70b956c0bb22031ca00f739f3d4e Mon Sep 17 00:00:00 2001 From: Dmitriy Simushev Date: Wed, 18 Jun 2014 11:14:35 +0000 Subject: [PATCH] Fix bug with mail_template_load function --- src/mibew/libs/notify.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mibew/libs/notify.php b/src/mibew/libs/notify.php index 94e1d08e..140f72f5 100644 --- a/src/mibew/libs/notify.php +++ b/src/mibew/libs/notify.php @@ -84,7 +84,7 @@ function mail_template_load($name, $locale) $template = false; } else { // Try to load the template for the default locale. - $template = $this->loadMailTemplate($name, DEFAULT_LOCALE); + $template = mail_template_load($name, DEFAULT_LOCALE); } }