mirror of
				https://github.com/NodeBB/NodeBB.git
				synced 2025-10-30 18:46:01 +01:00 
			
		
		
		
	403 browser title
This commit is contained in:
		| @@ -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) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user