From 759bdd55f07c366c9ff4d8b08052fcb1e56c9e2a Mon Sep 17 00:00:00 2001 From: barisusakli Date: Mon, 20 Apr 2015 15:41:08 -0400 Subject: [PATCH] closes #3065 --- src/search.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/search.js b/src/search.js index a2bb96a33f..09e22a7a44 100644 --- a/src/search.js +++ b/src/search.js @@ -114,7 +114,7 @@ function searchInContent(data, callback) { pids = pids.slice(start, start + 10); } - posts.getPostSummaryByPids(pids, data.uid, {stripTags: true, parse: false}, next); + posts.getPostSummaryByPids(pids, data.uid, {}, next); }, function(posts, next) { next(null, {matches: posts, matchCount: matchCount, pageCount: Math.max(1, Math.ceil(parseInt(matchCount, 10) / 10))});