Make WordPress Core

Ticket #27693: 27693.diff

File 27693.diff, 540 bytes (added by pento, 10 years ago)
  • src/wp-includes/wp-db.php

     
    19621962
    19631963                if ( $this->use_mysqli ) {
    19641964                        for ( $i = 0; $i < @mysqli_num_fields( $this->result ); $i++ ) {
    1965                                 $this->col_info[ $i ] = @mysqli_fetch_field( $this->result, $i );
     1965                                $this->col_info[ $i ] = @mysqli_fetch_field( $this->result );
    19661966                        }
    19671967                } else {
    19681968                        for ( $i = 0; $i < @mysql_num_fields( $this->result ); $i++ ) {