Changeset 5858 for trunk/wp-includes/wp-db.php
- Timestamp:
- 08/10/2007 01:33:56 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/wp-db.php
r5791 r5858 261 261 if ( $query ) 262 262 $this->query($query); 263 else 264 return null; 263 265 264 266 // Extract var out of cached results based x,y vals … … 282 284 if ( $query ) 283 285 $this->query($query); 286 else 287 return null; 284 288 285 289 if ( !isset($this->last_result[$y]) ) … … 306 310 if ( $query ) 307 311 $this->query($query); 312 else 313 return null; 308 314 309 315 // Extract the column values … … 325 331 if ( $query ) 326 332 $this->query($query); 333 else 334 return null; 327 335 328 336 // Send back array of objects. Each row is an object
Note: See TracChangeset
for help on using the changeset viewer.