mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-12-17 22:10:23 +01:00
Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0020b8a18b | ||
|
|
368c387b6a | ||
|
|
5ff5b6c699 | ||
|
|
9ea1f25814 | ||
|
|
383410ba83 | ||
|
|
c4a8138ded | ||
|
|
a5e5f767ab | ||
|
|
97ac4a2e8c | ||
|
|
6cbeff34ea | ||
|
|
6be3e7cc8c | ||
|
|
87d621d944 |
@@ -2,7 +2,7 @@
|
|||||||
"name": "nodebb",
|
"name": "nodebb",
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
"description": "NodeBB Forum",
|
"description": "NodeBB Forum",
|
||||||
"version": "1.7.2",
|
"version": "1.7.3",
|
||||||
"homepage": "http://www.nodebb.org",
|
"homepage": "http://www.nodebb.org",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|||||||
@@ -10,13 +10,13 @@ var helpers = require('./helpers');
|
|||||||
|
|
||||||
exports.get = function (req, res, callback) {
|
exports.get = function (req, res, callback) {
|
||||||
async.waterfall([
|
async.waterfall([
|
||||||
function (next) {
|
function (_next) {
|
||||||
plugins.fireHook('filter:composer.build', {
|
plugins.fireHook('filter:composer.build', {
|
||||||
req: req,
|
req: req,
|
||||||
res: res,
|
res: res,
|
||||||
next: callback,
|
next: callback,
|
||||||
templateData: {},
|
templateData: {},
|
||||||
}, next);
|
}, _next);
|
||||||
},
|
},
|
||||||
function (data) {
|
function (data) {
|
||||||
if (data.templateData.disabled) {
|
if (data.templateData.disabled) {
|
||||||
|
|||||||
Reference in New Issue
Block a user