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/admin/inc/class.boaccounts.inc.php

    r2 r7655  
    703703                        { 
    704704                                $error[$totalerrors] = lang('You must enter a lastname'); 
    705                                 $totalerrors++; 
     705                                ++$totalerrors; 
    706706                        } 
    707707 
     
    709709                        { 
    710710                                $error[$totalerrors] = lang('You must enter a loginid'); 
    711                                 $totalerrors++; 
     711                                ++$totalerrors; 
    712712                        } 
    713713                         
     
    715715                        { 
    716716                                $error[$totalerrors] = lang('The groups must include the primary group'); 
    717                                 $totalerrors++; 
     717                                ++$totalerrors; 
    718718                        } 
    719719                         
     
    730730                                          $error[$totalerrors] = lang('That loginid has already been taken'); 
    731731                                   } 
    732                                    $totalerrors++; 
     732                                   ++$totalerrors; 
    733733                                } 
    734734                        } 
     
    739739                                { 
    740740                                        $error[$totalerrors] = lang('The two passwords are not the same'); 
    741                                         $totalerrors++; 
     741                                        ++$totalerrors; 
    742742                                } 
    743743                        } 
     
    746746                        { 
    747747                                $error[$totalerrors] = lang('You must add at least 1 permission or group to this account'); 
    748                                 $totalerrors++; 
     748                                ++$totalerrors; 
    749749                        } 
    750750 
     
    761761                                        { 
    762762                                                $error[$totalerrors] = lang('You have entered an invalid expiration date'); 
    763                                                 $totalerrors++; 
     763                                                ++$totalerrors; 
    764764                                        } 
    765765                                        else 
     
    781781                        { 
    782782                                $error[$totalerrors] = lang ('File space must be an integer'); 
    783                                 $totalerrors++; 
     783                                ++$totalerrors; 
    784784                        } 
    785785                */ 
Note: See TracChangeset for help on using the changeset viewer.