Make WordPress Core


Ignore:
Timestamp:
02/27/2007 03:24:54 PM (18 years ago)
Author:
markjaquith
Message:

trailing tabs and whitespace cleanup.

File:
1 edited

Legend:

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

    r4860 r4953  
    4949        return $this->__construct($dbuser, $dbpassword, $dbname, $dbhost);
    5050    }
    51    
     51
    5252    function __construct($dbuser, $dbpassword, $dbname, $dbhost) {
    5353        register_shutdown_function(array(&$this, "__destruct"));
     
    8080
    8181    function __destruct() {
    82         return true;       
     82        return true;   
    8383    }
    8484
     
    182182        $this->result = @mysql_query($query, $this->dbh);
    183183        ++$this->num_queries;
    184    
     184
    185185        if (SAVEQUERIES)
    186186            $this->queries[] = array( $query, $this->timer_stop() );
     
    256256        if ( $query )
    257257            $this->query($query);
    258        
     258   
    259259        if ( !isset($this->last_result[$y]) )
    260260            return null;
Note: See TracChangeset for help on using the changeset viewer.