Commit:    1b91d94b58e9366c22b047f84dafd3a949961ea9
Author:    Hannes Magnusson <[email protected]>         Tue, 31 Dec 2013 
13:00:05 -0800
Parents:   feb4892523f573f659415a30f57970573269199d
Branches:  master

Link:       
http://git.php.net/?p=web/people.git;a=commitdiff;h=1b91d94b58e9366c22b047f84dafd3a949961ea9

Log:
100 is a littlebit to much

Changed paths:
  M  include/misc.php


Diff:
diff --git a/include/misc.php b/include/misc.php
index d1ecffd..f258add 100644
--- a/include/misc.php
+++ b/include/misc.php
@@ -33,8 +33,8 @@ function findAllUsers($batch) {
         error($json["error"]);
     }
 
-    $batch *= 100;
-    return array_slice($json, $batch, 100);
+    $batch *= 50;
+    return array_slice($json, $batch, 50);
 }
 function findPHPUser($username)
 {


--
PHP Webmaster List Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to