From c004efee3f7832fa902ca7d5ac87c267f577eb01 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Thu, 23 Apr 2015 11:15:37 -0400 Subject: [PATCH] closed #3084 --- src/posts/edit.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/posts/edit.js b/src/posts/edit.js index e96714af96..efec4c7918 100644 --- a/src/posts/edit.js +++ b/src/posts/edit.js @@ -116,7 +116,8 @@ module.exports = function(Posts) { data.tags = data.tags || []; async.waterfall([ - function(next) { + async.apply(plugins.fireHook,'filter:topic.edit', topicData), + function(topicData, next) { db.setObject('topic:' + tid, topicData, next); }, function(next) {