Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
07/21/2011 10:27:09 PM (13 years ago)
Author:
djpaul
Message:

Tune up 'for' loops. Fixes #2985, props cnorris23 and r-a-y

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-xprofile/bp-xprofile-template.php

    r4678 r4770  
    103103        $has_data = false;
    104104
    105         for ( $i = 0; $i < count( $this->group->fields ); $i++ ) {
     105        for ( $i = 0, $count = count( $this->group->fields ); $i < $count; ++$i ) {
    106106            $field = &$this->group->fields[$i];
    107107
     
    548548                        $html .= '<option value=""' . selected( $day, '', false ) . '>--</option>';
    549549
    550                         for ( $i = 1; $i < 32; $i++ ) {
     550                        for ( $i = 1; $i < 32; ++$i ) {
    551551                            $html .= '<option value="' . $i .'"' . selected( $day, $i, false ) . '>' . $i . '</option>';
    552552                        }
     
    564564                        $html .= '<option value=""' . selected( $month, '', false ) . '>------</option>';
    565565
    566                         for ( $i = 0; $i < 12; $i++ ) {
     566                        for ( $i = 0; $i < 12; ++$i ) {
    567567                            $html .= '<option value="' . $eng_months[$i] . '"' . selected( $month, $eng_months[$i], false ) . '>' . $months[$i] . '</option>';
    568568                        }
     
    634634
    635635    $tabs = array();
    636     for ( $i = 0, $count = count( $groups ); $i < $count; $i++ ) {
     636    for ( $i = 0, $count = count( $groups ); $i < $count; ++$i ) {
    637637        if ( $group_name == $groups[$i]->name )
    638638            $selected = ' class="current"';
Note: See TracChangeset for help on using the changeset viewer.