| Anonymous | Login | Signup for a new account | 02-09-10 21:39 GMT | ![]() |
| Main | My View | View Issues | Change Log | Roadmap |
| View Issue Details [ Jump to Notes ] | [ Print ] | |||||
| ID | Project | Category | View Status | Date Submitted | Last Update | |
| 0015282 | phplist | User Management | public | 11-05-09 15:58 | 07-08-09 19:46 | |
| Reporter | h2b2 | |||||
| Priority | normal | Severity | minor | Reproducibility | always | |
| Status | resolved | Resolution | fixed | |||
| Platform | OS | OS Version | ||||
| Product Version | 2.10.10 | |||||
| Target Version | 2.10.11 | Fixed in Version | ||||
| 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. |
| Copyright © 2000 - 2010 MantisBT Group |