Changeset 31051
- Timestamp:
- 01/05/2015 04:39:26 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/wp-db.php
r31050 r31051 2018 2018 2019 2019 if ( $query ) { 2020 $this->check_current_query = false;2021 2020 $this->query( $query ); 2022 2021 } … … 2047 2046 $this->func_call = "\$db->get_row(\"$query\",$output,$y)"; 2048 2047 if ( $query ) { 2049 $this->check_current_query = false;2050 2048 $this->query( $query ); 2051 2049 } else { … … 2085 2083 public function get_col( $query = null , $x = 0 ) { 2086 2084 if ( $query ) { 2087 $this->check_current_query = false;2088 2085 $this->query( $query ); 2089 2086 } … … 2114 2111 2115 2112 if ( $query ) { 2116 $this->check_current_query = false;2117 2113 $this->query( $query ); 2118 2114 } else { … … 2440 2436 } 2441 2437 2438 $this->check_current_query = false; 2439 2442 2440 $row = $this->get_row( "SELECT " . implode( ', ', $query ), ARRAY_N ); 2443 2441 if ( ! $row ) {
Note: See TracChangeset
for help on using the changeset viewer.