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