Changeset 957

Show
Ignore:
Timestamp:
11/17/07 20:21:26 (1 year ago)
Author:
mdawaffe
Message:

mysqli_connect() returns a mysqli object, not a mysql resource. Fixes #745 props sambauers

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/bb-includes/db-mysqli.php

    r956 r957  
    165165        } 
    166166 
    167         // table name or mysql resource 
     167        // table name or mysqli object 
    168168        function db_version( $dbh = false ) { 
    169169                if ( !$dbh ) 
    170170                        $dbh = $this->forums; 
    171171 
    172                 if ( !is_resource( $dbh ) ) 
     172                if ( !is_object( $dbh ) ) 
    173173                        $dbh = $this->db_connect( "DESCRIBE $dbh" ); 
    174174