Closed (fixed)
Project:
TrackBack
Version:
5.x-1.2
Component:
Other
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
26 Jul 2007 at 16:37 UTC
Updated:
4 Sep 2007 at 16:23 UTC
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