403 browser title

This commit is contained in:
psychobunny
2015-08-27 16:34:01 -04:00
parent 0eca875f6e
commit dbc9c07b55
2 changed files with 11 additions and 3 deletions

View File

@@ -36,9 +36,17 @@ helpers.notFound = function(req, res, error) {
helpers.notAllowed = function(req, res, error) {
if (req.uid) {
if (res.locals.isAPI) {
res.status(403).json({path: req.path.replace(/^\/api/, ''), loggedIn: !!req.uid, error: error});
res.status(403).json({
path: req.path.replace(/^\/api/, ''),
loggedIn: !!req.uid, error: error,
title: '[[global:403.title]]'
});
} else {
res.status(403).render('403', {path: req.path, loggedIn: !!req.uid, error: error});
res.status(403).render('403', {
path: req.path,
loggedIn: !!req.uid, error: error,
title: '[[global:403.title]]'
});
}
} else {
if (res.locals.isAPI) {