This commit is contained in:
psychobunny
2015-09-21 17:18:01 -04:00
parent 55748ac3f5
commit 46d6be57a8

View File

@@ -35,10 +35,10 @@ function renderEmail(req, res, next) {
}, function(err, emails) {
res.render('admin/settings/email', {
emails: emails.filter(function(email) {
return email.path.indexOf('_plaintext') === -1 && email.path.indexOf('partials') === -1
return email.path.indexOf('_plaintext') === -1 && email.path.indexOf('partials') === -1;
})
});
; });
});
});
}