From 104e73bd4a18aa188a658a7c1c68015020995cfa Mon Sep 17 00:00:00 2001 From: king6cong Date: Wed, 13 Apr 2016 14:51:00 +0800 Subject: [PATCH] fix email error log templat --- core/server/api/authentication.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/core/server/api/authentication.js b/core/server/api/authentication.js index b20f0c71da..9f2ace6259 100644 --- a/core/server/api/authentication.js +++ b/core/server/api/authentication.js @@ -424,10 +424,9 @@ authentication = { errors.logError( error.message, i18n.t( - 'errors.api.authentication.unableToSendWelcomeEmail', - {url: 'http://support.ghost.org/mail/'} + 'errors.api.authentication.unableToSendWelcomeEmail' ), - i18n.t('errors.api.authentication.checkEmailConfigInstructions') + i18n.t('errors.api.authentication.checkEmailConfigInstructions', {url: 'http://support.ghost.org/mail/'}) ); }); })