This commit is contained in:
psychobunny
2016-02-25 23:04:19 -05:00
parent 6e50a66e05
commit 2b10ef97b2
2 changed files with 4 additions and 1 deletions

View File

@@ -182,7 +182,8 @@ Controllers.compose = function(req, res, next) {
Controllers.confirmEmail = function(req, res, next) {
user.email.confirm(req.params.code, function (err) {
res.render('confirm', {
error: err ? err.message : ''
error: err ? err.message : '',
title: '[[pages:confirm]]',
});
});
};