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.

CommentFileSizeAuthor
support.admin_.inc_.patch483 byteskingandy

Comments

gengel’s picture

I ran into this issue as well. Patch works for me. +1

rsevero’s picture

Status: Needs review » Reviewed & tested by the community

Applied it here. Working as expected.

rsevero’s picture

Version: 6.x-1.3 » 6.x-1.4

Unfortunately the above patch haven't been applied in release 6.x-1.4.

jeremy’s picture

Status: Reviewed & tested by the community » Fixed

Sorry for the delay -- patch committed:
http://drupalcode.org/project/support.git/commit/3036121

Thanks!

jeremy’s picture

Version: 6.x-1.4 » 7.x-1.x-dev
Status: Fixed » Patch (to be ported)

Needs to be ported to 7.x.

bdragon’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.