Ticket #27933: wp-db.php.2.patch
| File wp-db.php.2.patch, 562 bytes (added by , 12 years ago) |
|---|
-
wp-includes/wp-db.php
1338 1338 } 1339 1339 } 1340 1340 1341 // Persistent connections with mysqli are prepended with 'p:', supported on PHP5.3+ 1342 if ( ! $new_link && version_compare(PHP_VERSION, '5.3.0') >= 0 ){ 1343 $host = "p:$host"; 1344 } 1345 1341 1346 if ( WP_DEBUG ) { 1342 1347 mysqli_real_connect( $this->dbh, $host, $this->dbuser, $this->dbpassword, null, $port, $socket, $client_flags ); 1343 1348 } else {