mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-09 07:25:46 +01:00
This commit is contained in:
@@ -36,11 +36,11 @@ var winston = require('winston'),
|
|||||||
postData.content = data.content;
|
postData.content = data.content;
|
||||||
plugins.fireHook('filter:post.edit', {post: postData, uid: data.uid}, next);
|
plugins.fireHook('filter:post.edit', {post: postData, uid: data.uid}, next);
|
||||||
}
|
}
|
||||||
], function(err, postData) {
|
], function(err, data) {
|
||||||
if (err) {
|
if (err) {
|
||||||
return callback(err);
|
return callback(err);
|
||||||
}
|
}
|
||||||
|
var postData = data.post;
|
||||||
async.parallel({
|
async.parallel({
|
||||||
post: function(next) {
|
post: function(next) {
|
||||||
var d = {
|
var d = {
|
||||||
|
|||||||
Reference in New Issue
Block a user