Changeset 56549 for trunk/src/wp-includes/class-wpdb.php
- Timestamp:
- 09/09/2023 09:26:01 AM (15 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wpdb.php
r56476 r56549 1540 1540 $l = strlen( $s ); 1541 1541 while ( $k <= $l && '%' === $s[ $l - $k ] ) { 1542 $k++;1542 ++$k; 1543 1543 } 1544 1544 … … 1601 1601 1602 1602 $key += 3; 1603 $arg_id++;1603 ++$arg_id; 1604 1604 } 1605 1605 … … 1633 1633 1634 1634 $key += 3; 1635 $arg_id++;1635 ++$arg_id; 1636 1636 } 1637 1637 … … 2305 2305 while ( $row = mysqli_fetch_object( $this->result ) ) { 2306 2306 $this->last_result[ $num_rows ] = $row; 2307 $num_rows++;2307 ++$num_rows; 2308 2308 } 2309 2309 } … … 2335 2335 } 2336 2336 2337 $this->num_queries++;2337 ++$this->num_queries; 2338 2338 2339 2339 if ( defined( 'SAVEQUERIES' ) && SAVEQUERIES ) { … … 3879 3879 foreach ( (array) $this->col_info as $col ) { 3880 3880 $new_array[ $i ] = $col->{$info_type}; 3881 $i++;3881 ++$i; 3882 3882 } 3883 3883 return $new_array;
Note: See TracChangeset
for help on using the changeset viewer.