As the title says - the function support_admin_client_overview() in support.admin.inc fetches its results using pager_query($sql, 50, 0) and no concordant pager is added to the output before returning it. This means when more than 50 clients are in the system it only displays the first page of 50, with no way of stepping forward to the next page.
Attached is a patch to address this - I've just pushed the output of theme('table', $header, $rows) into a variable and concatenated the results of theme('pager', array(), 50, 0) before it gets returned.
| Comment | File | Size | Author |
|---|---|---|---|
| support.admin_.inc_.patch | 483 bytes | kingandy |
Comments
Comment #1
gengel commentedI ran into this issue as well. Patch works for me. +1
Comment #2
rsevero commentedApplied it here. Working as expected.
Comment #3
rsevero commentedUnfortunately the above patch haven't been applied in release 6.x-1.4.
Comment #4
jeremy commentedSorry for the delay -- patch committed:
http://drupalcode.org/project/support.git/commit/3036121
Thanks!
Comment #5
jeremy commentedNeeds to be ported to 7.x.
Comment #6
bdragon commentedMerged to D7.
http://drupalcode.org/project/support.git/commit/72e5654fa86a9d7c372a888...
Ported to D7.
http://drupalcode.org/project/support.git/commit/6e1cea39bd7a25bbdd1cb3f...