Skip to:
Content

bbPress.org

Changeset 33 for trunk/bb-settings.php


Ignore:
Timestamp:
12/31/2004 10:24:12 AM (21 years ago)
Author:
matt
Message:

Changes from #7 to add MySQLi support, pretty cool.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bb-settings.php

    r28 r33  
    1515bb_timer_start();
    1616
    17 require( BBPATH . '/bb-includes/db.php');
     17if ( extension_loaded('mysqli') )
     18    require( BBPATH . '/bb-includes/db-mysqli.php');
     19else
     20    require( BBPATH . '/bb-includes/db.php');
    1821require( BBPATH . '/bb-includes/functions.php');
    1922require( BBPATH . '/bb-includes/formatting-functions.php');
Note: See TracChangeset for help on using the changeset viewer.