mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-01-04 23:00:31 +01:00
pass dbset as attribute
This commit is contained in:
@@ -133,7 +133,7 @@ define('forum/recent', ['forum/infinitescroll', 'components'], function(infinite
|
||||
|
||||
infinitescroll.loadMore('topics.loadMoreFromSet', {
|
||||
after: $('[component="category"]').attr('data-nextstart'),
|
||||
set: 'topics:recent'
|
||||
set: $('[component="category"]').attr('data-dbset') ? $('[component="category"]').attr('data-dbset') : 'topics:recent'
|
||||
}, function(data, done) {
|
||||
if (data.topics && data.topics.length) {
|
||||
Recent.onTopicsLoaded('recent', data.topics, false, done);
|
||||
|
||||
@@ -54,6 +54,7 @@ recentController.get = function(req, res, next) {
|
||||
var data = {};
|
||||
data.topics = topics;
|
||||
data.nextStart = stop + 1;
|
||||
data.dbSet = 'topics:recent';
|
||||
data['feeds:disableRSS'] = parseInt(meta.config['feeds:disableRSS'], 10) === 1;
|
||||
data.rssFeedUrl = nconf.get('relative_path') + '/recent.rss';
|
||||
data.title = '[[pages:recent]]';
|
||||
|
||||
Reference in New Issue
Block a user