Changeset 27503 for trunk/src/wp-includes/wp-db.php
- Timestamp:
- 03/11/2014 07:26:02 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/wp-db.php
r27377 r27503 1316 1316 $port_or_socket = strstr( $host, ':' ); 1317 1317 if ( ! empty( $port_or_socket ) ) { 1318 $host = s trstr( $host, ':', true);1318 $host = substr( $host, 0, strpos( $host, ':' ) ); 1319 1319 $port_or_socket = substr( $port_or_socket, 1 ); 1320 1320 if ( 0 !== strpos( $port_or_socket, '/' ) ) {
Note: See TracChangeset
for help on using the changeset viewer.