Compare commits

...

6 Commits

Author SHA1 Message Date
Misty (Bot)
c4a8138ded Incremented version number - 1.7.1 2017-11-29 20:38:53 +00:00
Misty (Bot)
a5e5f767ab Merge commit 'a19537dc25e406a98048a561f45b3b321c9d3509' into v1.7.x 2017-11-29 20:38:03 +00:00
Barış Soner Uşaklı
97ac4a2e8c backport composer route crash fix 2017-11-23 18:59:18 -05:00
Julian Lam
6cbeff34ea v1.7.0 compatibility for slick theme 2017-11-21 11:32:36 -05:00
Misty (Bot)
6be3e7cc8c Merge branch 'master' into v1.7.x 2017-11-15 20:00:48 +00:00
Misty (Bot)
87d621d944 Incremented version number - v1.7.0 2017-11-15 19:00:47 +00:00
2 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
"name": "nodebb",
"license": "GPL-3.0",
"description": "NodeBB Forum",
"version": "1.7.0",
"version": "1.7.1",
"homepage": "http://www.nodebb.org",
"repository": {
"type": "git",

View File

@@ -10,13 +10,13 @@ var helpers = require('./helpers');
exports.get = function (req, res, callback) {
async.waterfall([
function (next) {
function (_next) {
plugins.fireHook('filter:composer.build', {
req: req,
res: res,
next: callback,
templateData: {},
}, next);
}, _next);
},
function (data) {
if (data.templateData.disabled) {