mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-01 03:26:04 +01:00
fixed header template value too
This commit is contained in:
@@ -99,7 +99,7 @@ var path = require('path'),
|
||||
clientScripts: clientScripts,
|
||||
navigation: custom_header.navigation,
|
||||
'cache-buster': meta.config['cache-buster'] ? '?v=' + meta.config['cache-buster'] : '',
|
||||
allowRegistration: parseInt(meta.config.allowRegistration, 10) === 1
|
||||
allowRegistration: meta.config.allowRegistration === undefined || parseInt(meta.config.allowRegistration, 10) === 1
|
||||
};
|
||||
|
||||
var uid = '0';
|
||||
|
||||
Reference in New Issue
Block a user