¿ªÔÆÌåÓý

Re: Posting an Owner message to the group


 

¿ªÔÆÌåÓý

Duane,


Using /search?p=SubsCount,,,20,2,10000,0? Anything that keeps it from going over 10k works fine.

Thinking more about this and just realized it, by using the value in that wrong place (specifically) you inadvertently found a bug; the "display" code uses the absolute total number of groups (~32K) as the value for calculating how many result pages with link info to display, but the "fetch data" code returns less because it checks for group visibility; there are 9980 visible groups, the rest are not visible, hence when attempting to go past that number, you'll get no results, regardless of how many rows per page one might select.? That's why when I tried to go to page two after the first 10K displayed didn't work and also returned nothing.

This works:
/search?p=ThreadsCount,,,20,2,9980,0

This doesn't:
/search?p=ThreadsCount,,,20,2,9981,0
(or at least it didn't at the time I wrote this, the 9980 visible group total may increment a few by the time this posts, or later, so it may now work, but increasing it by some amount will cause it again)

So technically, just by using the default 20 rows per page, one will reach the time when no results are presented anymore even if the pagination shows a ton of pages to go.? If the "display" code switches to using the visible groups total for pagination calculation it would fix this.

Cheers,
Christos

Join [email protected] to automatically receive all group messages.