Increase max limit for sqGetGlobalVarMultiple search "radius".
authorpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 5 Jan 2007 05:02:03 +0000 (05:02 +0000)
committerpdontthink <pdontthink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Fri, 5 Jan 2007 05:02:03 +0000 (05:02 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@12067 7612ce4b-ef26-0410-bec9-ea0150e637f0

functions/global.php

index ee78c9ac638efd166319913fb1988d8d9f8934ec..47625ac8429b382af8bb91461520c3b8647500bc 100644 (file)
@@ -183,7 +183,12 @@ function sqGetGlobalVarMultiple($name, &$value, $indicator_field,
                                 $fallback_no_suffix=TRUE, $default=NULL, 
                                 $typecast=FALSE) {
 
-    $max_form_search = 15;
+    // Set arbitrary max limit -- should be much lower except on the
+    // search results page, if there are many (50 or more?) mailboxes
+    // shown, this may not be high enough.  Is there some way we should
+    // automate this value?
+    //
+    $max_form_search = 100;
 
     for ($i = 1; $i <= $max_form_search; $i++) {
         if (sqGetGlobalVar($indicator_field . '_' . $i, $temp, $search)) {