category recent post fix

if a category is not displaying any recent posts dont render new posts
This commit is contained in:
barisusakli
2014-07-21 18:14:44 -04:00
parent c9fb5b3e11
commit ed18ac7fdf

View File

@@ -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;
}