Ignore:
Timestamp:
12/14/12 14:30:35 (11 years ago)
Author:
douglasz
Message:

Ticket #3236 - Melhorias de performance no codigo do Expresso.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/phpgwapi/inc/class.xmlrpc_server_php.inc.php

    r5912 r7655  
    144144                function verifySignature($in, $sig) 
    145145                { 
    146                         for($i=0; $i<sizeof($sig); $i++) 
     146                        for($i=0; $i<sizeof($sig); ++$i) 
    147147                        { 
    148148                                // check each possible signature in turn 
     
    151151                                { 
    152152                                        $itsOK = 1; 
    153                                         for($n=0; $n<$in->getNumParams(); $n++) 
     153                                        for($n=0; $n<$in->getNumParams(); ++$n) 
    154154                                        { 
    155155                                                $p = $in->getParam($n); 
     
    301301                                // now add parameters in 
    302302                                $plist = ''; 
    303                                 for($i=0; $i<sizeof($GLOBALS['_xh'][$parser]['params']); $i++) 
     303                                for($i=0; $i<sizeof($GLOBALS['_xh'][$parser]['params']); ++$i) 
    304304                                { 
    305305                                        //print "<!-- " . $GLOBALS['_xh'][$parser]['params'][$i]. "-->\n"; 
Note: See TracChangeset for help on using the changeset viewer.