Make WordPress Core


Ignore:
Timestamp:
02/26/2004 04:15:48 PM (22 years ago)
Author:
saxmatt
Message:

Removed global $siteurl and $blogfilename, use get_settings. Syntax fix for wp-db.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/wp-db.php

    r940 r945  
    4848        //  Select a DB (if another one needs to be selected)
    4949
    50         function select($db)x{
     50        function select($db) {
    5151            if ( !@mysql_select_db($db,$this->dbh)) {
    5252                die("
     
    238238
    239239            // If the output is an object then return object using the row offset..
    240             if ( $output == OBJECT ) b{
     240            if ( $output == OBJECT ) {
    241241                return $this->last_result[$y]?$this->last_result[$y]:null;
    242242            }
Note: See TracChangeset for help on using the changeset viewer.