Changeset 945 for trunk/wp-includes/wp-db.php
- Timestamp:
- 02/26/2004 04:15:48 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/wp-db.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/wp-db.php
r940 r945 48 48 // Select a DB (if another one needs to be selected) 49 49 50 function select($db) x{50 function select($db) { 51 51 if ( !@mysql_select_db($db,$this->dbh)) { 52 52 die(" … … 238 238 239 239 // If the output is an object then return object using the row offset.. 240 if ( $output == OBJECT ) b{240 if ( $output == OBJECT ) { 241 241 return $this->last_result[$y]?$this->last_result[$y]:null; 242 242 }
Note: See TracChangeset
for help on using the changeset viewer.