largersmallernormaltext version of this page

View Issue Details Jump to Notes ] Print ]
IDProjectCategoryView StatusDate SubmittedLast Update
0015282phplistUser Managementpublic11-05-09 15:5807-08-09 19:46
Reporterh2b2 
PrioritynormalSeverityminorReproducibilityalways
StatusresolvedResolutionfixed 
PlatformOSOS Version
Product Version2.10.10 
Target Version2.10.11Fixed in Version 
Summary0015282: v2.10.10: 'View list members' does only allow viewing the first page of 50 users on the list
DescriptionWhen 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 InformationThis 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 [^]
TagsNo tags attached.
Attached Files

- Relationships
has duplicate 0015306resolvedhernan Under 'Lists' 'view members' display show first 50 members; if i clik next it does not move 
has duplicate 0015333resolvedmichiel Failure of navigation buttons in list member lists has returned in stable version 
child of 0015370new svn revision 1703 inspired from 2.10.10 initial patches 
child of 0015369resolvedmichiel 2.10.10 initial patches 

-  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.


Copyright © 2000 - 2010 MantisBT Group
Powered by Mantis Bugtracker