From ed18ac7fdf1bb09f8fa71a6b436b3c334a201c76 Mon Sep 17 00:00:00 2001 From: barisusakli Date: Mon, 21 Jul 2014 18:14:44 -0400 Subject: [PATCH] category recent post fix if a category is not displaying any recent posts dont render new posts --- public/src/forum/home.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/src/forum/home.js b/public/src/forum/home.js index b3a47db264..461b5a9c8f 100644 --- a/public/src/forum/home.js +++ b/public/src/forum/home.js @@ -41,7 +41,7 @@ define('forum/home', function() { var category = $('.home .category-item[data-cid="' + cid + '"]'); var categoryBox = category.find('.category-box'); var numRecentReplies = category.attr('data-numRecentReplies'); - if (!numRecentReplies) { + if (!numRecentReplies || !parseInt(numRecentReplies, 10)) { return; }