From 83de5ba5a43c15157ac2f879f44f857638325981 Mon Sep 17 00:00:00 2001 From: barisusakli Date: Mon, 18 Aug 2014 19:04:49 -0400 Subject: [PATCH] added topic owner uid --- src/posts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/posts.js b/src/posts.js index ab87cbeb2a..5293b5ac46 100644 --- a/src/posts.js +++ b/src/posts.js @@ -302,7 +302,7 @@ var async = require('async'), user.getMultipleUserFields(uids, ['uid', 'username', 'userslug', 'picture'], next); }, topicsAndCategories: function(next) { - db.getObjectsFields(tids, ['tid', 'title', 'cid', 'slug', 'deleted'], function(err, topics) { + db.getObjectsFields(tids, ['uid', 'tid', 'title', 'cid', 'slug', 'deleted'], function(err, topics) { if (err) { return next(err); }