Changeset 31371 for trunk/src/wp-includes/wp-db.php
- Timestamp:
- 02/09/2015 12:33:32 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/wp-db.php
r31349 r31371 2462 2462 2463 2463 // Change the charset to match the string(s) we're converting 2464 if ( $charset !== $this->charset ) { 2464 if ( $charset !== $connection_charset ) { 2465 $connection_charset = $charset; 2465 2466 $this->set_charset( $this->dbh, $charset ); 2466 2467 } … … 2483 2484 // Don't forget to change the charset back! 2484 2485 if ( $connection_charset !== $this->charset ) { 2485 $this->set_charset( $this->dbh , $connection_charset);2486 $this->set_charset( $this->dbh ); 2486 2487 } 2487 2488 }
Note: See TracChangeset
for help on using the changeset viewer.