It looks like the "Number of trackbacks to display" config setting is not being used while listing trackbacks for moderation, etc.
I traced this to the trackback_admin_overview() function. Specifically, the page size appears to be hard coded to 50 lines here:
$result = pager_query($sql, 50);
I changed to:
$result = pager_query($sql, variable_get('trackback_display_number', 50));
and it seems to work as I'd expect.
I'm new here, so pl. let me know if I should present this differently.
Thanks
Comments
Comment #1
zorac commentedHi,
It is not a bug. the "Number of trackbacks to display" setting is used for the recent trackbacks block.
Description: "How many trackbacks are displayed in the recent trackbacks block"
Comment #2
zorac commented