largersmallernormaltext version of this page

Viewing Issue Simple Details Jump to Notes ] View Advanced ] Print ]
ID Category Severity Reproducibility Date Submitted Last Update
0015282 [phplist] User Management minor always 11-05-09 15:58 07-08-09 19:46
Reporter h2b2 View Status public  
Assigned To
Priority normal Resolution fixed  
Status resolved   Product Version 2.10.10
Summary 0015282: v2.10.10: 'View list members' does only allow viewing the first page of 50 users on the list
Description When viewing list members (e.g. lists/admin/?page=members&id=1) it is only possible to view the first page of 50 list members. It is not possible to view the remainder of the list members, as the navigation links (<,>,<<,>>) do not seem to work.

For instance, ">" (http://my_domain.com/lists/admin/?page=members&start=50&id=1) [^] does not load the next 50 list members.
Additional Information This issue is reported by several forum users (system info included in their posts).

Related to this forum thread: http://forums.phplist.com/viewtopic.php?f=17&t=24514&start=0 [^]
Tags No tags attached.
Attached Files

- Relationships

-  Notes
(0050665)
iloveitaly (reporter)
27-05-09 15:35

Here is the fix:

Change
if (isset($start) && $start) {
     $start = sprintf('%d',$_REQUEST["start"]);

To:
if (isset($_GET['start']) && (int) $_GET['start'] > 0) {
$start = (int) $_GET["start"];
(0050666)
pbolger (reporter)
29-05-09 09:59

Not sure what the protocol here is, but I noticed this issue, and iloveitaly's patch fixes it for me.

How does one go about getting the patch considered for inclusion in the next release?

I'd say the severity is rather more than 'minor' too - not being able to edit lists of over 50 members is a pretty major drawback in my book!
(0050669)
kgw220495 (reporter)
01-06-09 10:52

The above code can be found in the admin code folder in members.php on line 205. Change made and works successfully.
(0050688)
kbh (reporter)
29-06-09 06:55

thanks
it's working!
(0050699)
ignacio (administrator)
27-07-09 14:29

I need to asssign this to Pablo.
(0050700)
ignacio (administrator)
27-07-09 15:26

Hi Pablo,
Could you please apply this patch to the 2.10.10 (stable) version?

Thanks in advance,
Ignacio
(0050706)
pablo (developer)
07-08-09 19:45

Change applied and tested.


Mantis 1.1.6[^]
Copyright © 2000 - 2008 Mantis Group
Powered by Mantis Bugtracker