From 6b23530caa265c4a18b3b50fddae8131150243c6 Mon Sep 17 00:00:00 2001 From: Matteo Pagliazzi Date: Sat, 26 Oct 2013 18:16:16 +0200 Subject: [PATCH] fix typo --- src/controllers/auth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/auth.js b/src/controllers/auth.js index dd4ace6c40..dc49bc54b8 100644 --- a/src/controllers/auth.js +++ b/src/controllers/auth.js @@ -172,7 +172,7 @@ api.resetPassword = function(req, res, next){ to: email, subject: "Password Reset for HabitRPG", text: "Password for " + user.auth.local.username + " has been reset to " + newPassword + ". Log in at " + nconf.get('BASE_URL'), - html: "Password for " + user.auth.local.username + " has been reset to " + newPassword + ". Log in at" + nconf.get('BASE_URL') + html: "Password for " + user.auth.local.username + " has been reset to " + newPassword + ". Log in at " + nconf.get('BASE_URL') }); user.save(); return res.send('New password sent to '+ email);