fixed missing currentPage

This commit is contained in:
barisusakli
2014-03-10 18:28:34 -04:00
parent 19c9f1bb19
commit 974333dbc3

View File

@@ -48,7 +48,7 @@ topicsController.get = function(req, res, next) {
return next(new Error('Topic deleted'), null);
}
}
topicData.currentPage = page;
next(err, topicData);
});
});
@@ -139,7 +139,7 @@ topicsController.get = function(req, res, next) {
href: nconf.get('url') + '/category/' + topicData.category.slug
}
];
next(null, topicData);
}
], function (err, data) {
@@ -176,7 +176,6 @@ topicsController.get = function(req, res, next) {
active: x === parseInt(page, 10)
});
}
res.render('topic', data);
});
};