Changeset 8600 for trunk/wp-includes/wp-db.php
- Timestamp:
- 08/09/2008 05:36:14 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/wp-db.php
r8572 r8600 340 340 $collation_query .= " COLLATE '{$this->collate}'"; 341 341 } 342 342 343 343 if ( !empty($collation_query) ) 344 344 $this->query($collation_query); 345 346 } 347 345 346 } 347 348 348 $this->select($dbname); 349 349 } … … 686 686 else 687 687 return false; 688 688 689 689 return $this->query( "UPDATE $table SET " . implode( ', ', $bits ) . ' WHERE ' . implode( ' AND ', $wheres ) ); 690 690 }
Note: See TracChangeset
for help on using the changeset viewer.