mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-03-06 04:21:17 +01:00
fixes #4584
This commit is contained in:
@@ -112,7 +112,8 @@ middleware.renderHeader = function(req, res, data, next) {
|
||||
scripts: results.scripts,
|
||||
'cache-buster': meta.config['cache-buster'] ? 'v=' + meta.config['cache-buster'] : '',
|
||||
env: process.env.NODE_ENV ? true : false,
|
||||
title: (acpPath || 'Dashboard') + ' | NodeBB Admin Control Panel'
|
||||
title: (acpPath || 'Dashboard') + ' | NodeBB Admin Control Panel',
|
||||
bodyClass: data.bodyClass
|
||||
};
|
||||
|
||||
templateValues.template = {name: res.locals.template};
|
||||
|
||||
@@ -60,6 +60,6 @@
|
||||
<!-- END scripts -->
|
||||
</head>
|
||||
|
||||
<body class="admin">
|
||||
<body class="admin {bodyClass}">
|
||||
<!-- IMPORT admin/partials/menu.tpl -->
|
||||
<div class="container" id="content">
|
||||
Reference in New Issue
Block a user