From 7af6034efd9214e60dbe54b6a1628725267e78fe Mon Sep 17 00:00:00 2001 From: teutates <10206665+teutat3s@users.noreply.github.com> Date: Tue, 14 Jul 2020 17:55:42 +0200 Subject: [PATCH] Fix typo, global.HandleBars -> global.Handlebars --- src/controllers/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/main.js b/src/controllers/main.js index d41c62c36..b1b280d57 100644 --- a/src/controllers/main.js +++ b/src/controllers/main.js @@ -338,7 +338,7 @@ mainController.forgotPass = function (req, res) { } var subject = '[Trudesk] Password Reset Request' - if (template) subject = global.HandleBars.compile(template.subject)(data) + if (template) subject = global.Handlebars.compile(template.subject)(data) email .render('password-reset', data)