Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
04/16/2011 04:47:36 PM (15 years ago)
Author:
djpaul
Message:

Add PHP5-style constructors to classes. Fixes #3148, props Backie

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-friends/bp-friends-classes.php

    r3917 r4211  
    1515
    1616    function bp_friends_friendship( $id = null, $is_request = false, $populate_friend_details = true ) {
     17        $this->__construct( $id, $is_request, $populate_friend_details );
     18    }
     19
     20    function __construct( $id = null, $is_request = false, $populate_friend_details = true ) {
    1721        $this->is_request = $is_request;
    1822
Note: See TracChangeset for help on using the changeset viewer.