Merge pull request #2311 from stenehall/master

Fixing typo in allowedSections for allowed pages under settings
This commit is contained in:
Hannah Wolfe 2014-03-02 17:26:16 +00:00
commit 383da31484

View File

@ -89,7 +89,7 @@ adminControllers = {
// Method: GET
'settings': function (req, res, next) {
// 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, '');
if (allowedSections.indexOf(section) < 0) {