From d8c329cadd7e1d37876259868cc0c5aefaf8ff15 Mon Sep 17 00:00:00 2001 From: Raphael Beer Date: Sat, 6 Jun 2015 13:29:23 +0200 Subject: [PATCH] send topicData on action:topic.delete --- src/threadTools.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/threadTools.js b/src/threadTools.js index c98e62dbcc..1b5c71451a 100644 --- a/src/threadTools.js +++ b/src/threadTools.js @@ -39,7 +39,7 @@ var async = require('async'), topicData.deleted = isDelete ? 1 : 0; if (isDelete) { - plugins.fireHook('action:topic.delete', tid); + plugins.fireHook('action:topic.delete', topicData); } else { plugins.fireHook('action:topic.restore', topicData); }