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/contactcenter/inc/class.bo_contactcenter.inc.php

    r3282 r7655  
    410410 
    411411                                        } 
    412                                         $i++; 
     412                                        ++$i; 
    413413                                } 
    414414                        } 
     
    434434                                                $this->tree[$i]['type'] = 'ldap'; 
    435435                                                $this->tree[$i]['src'] = $id; 
    436                                         $i++; 
     436                                        ++$i; 
    437437                                } 
    438438                        }        
     
    461461                         
    462462                        $code = '$branch =& $this->tree[\'branches\']'; 
    463                         for ($i = 1; $i < $n_ways-1; $i++) 
     463                        for ($i = 1; $i < $n_ways-1; ++$i) 
    464464                        { 
    465465                                $code .= '['.$path[$i].'][\'sub_branch\']'; 
Note: See TracChangeset for help on using the changeset viewer.