Fixing typo in allowedSections for allowed pages under settings

This commit is contained in:
Johan Stenehall 2014-03-02 12:46:03 +01:00
parent b84c8a4726
commit be8b9cf092

View File

@ -89,7 +89,7 @@ adminControllers = {
// Method: GET // Method: GET
'settings': function (req, res, next) { 'settings': function (req, res, next) {
// TODO: Centralise list/enumeration of settings panes, so we don't run into trouble in future. // TODO: Centralise list/enumeration of settings panes, so we don't run into trouble in future.
var allowedSections = ['', 'general', 'user', 'app'], var allowedSections = ['', 'general', 'user', 'apps'],
section = req.url.replace(/(^\/ghost\/settings[\/]*|\/$)/ig, ''); section = req.url.replace(/(^\/ghost\/settings[\/]*|\/$)/ig, '');
if (allowedSections.indexOf(section) < 0) { if (allowedSections.indexOf(section) < 0) {