Skip to:
Content

BuddyPress.org


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

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-blogs/bp-blogs-template.php

    r4100 r4211  
    6767
    6868    function bp_blogs_template( $type, $page, $per_page, $max, $user_id, $search_terms ) {
     69        $this->__construct( $type, $page, $per_page, $max, $user_id, $search_terms );
     70    }
     71
     72    function __construct( $type, $page, $per_page, $max, $user_id, $search_terms ) {
    6973        global $bp;
    7074
Note: See TracChangeset for help on using the changeset viewer.