Skip to:
Content

BuddyPress.org

Changeset 4547


Ignore:
Timestamp:
06/20/2011 08:02:41 PM (13 years ago)
Author:
boonebgorges
Message:

Use PHP5 constructor when extending WPDB to maintain compatibility with WP 3.2 and BP forums. Fixes #3293

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/1.2/bp-forums/bp-forums-bbpress.php

    r3350 r4547  
    142142
    143143    function BPDB( $dbuser, $dbpassword, $dbname, $dbhost ) {
    144         parent::WPDB( $dbuser, $dbpassword, $dbname, $dbhost );
     144        parent::__construct( $dbuser, $dbpassword, $dbname, $dbhost );
    145145
    146146        $args = func_get_args();
Note: See TracChangeset for help on using the changeset viewer.