Changeset 15266
- Timestamp:
- 06/16/2010 07:28:01 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/wp-db.php
r14745 r15266 734 734 * 735 735 * @param string $db MySQL database name 736 * @param resource $dbh Optional link identifier. 736 737 * @return null Always null. 737 738 */ 738 function select( $db, &$dbh ) { 739 function select( $db, $dbh = null) { 740 if ( is_null($dbh) ) 741 $dbh = $this->dbh; 742 739 743 if ( !@mysql_select_db( $db, $dbh ) ) { 740 744 $this->ready = false;
Note: See TracChangeset
for help on using the changeset viewer.