0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

Merge pull request #6708 from king6cong/email-error-template-fix

fix email error log templat
This commit is contained in:
Hannah Wolfe 2016-04-13 11:23:43 +01:00
commit 37f855cede

View file

@ -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/'})
);
});
})