Skip to:
Content

BuddyPress.org

Ticket #3148: 3148-3.diff

File 3148-3.diff, 3.9 KB (added by Backie, 14 years ago)
  • bp-groups/bp-groups-template.php

     
    7171        var $order;
    7272
    7373        function bp_groups_template( $user_id, $type, $page, $per_page, $max, $slug, $search_terms, $include, $populate_extras, $exclude, $show_hidden ) {
     74                $this->__construct( $user_id, $type, $page, $per_page, $max, $slug, $search_terms, $include, $populate_extras, $exclude, $show_hidden );
     75        }
     76       
     77        function __construct( $user_id, $type, $page, $per_page, $max, $slug, $search_terms, $include, $populate_extras, $exclude, $show_hidden ){     
     78
    7479                global $bp;
    7580
    7681                $this->pag_page = isset( $_REQUEST['grpage'] ) ? intval( $_REQUEST['grpage'] ) : $page;
     
    14471452        var $total_group_count;
    14481453
    14491454        function bp_groups_group_members_template( $group_id, $per_page, $max, $exclude_admins_mods, $exclude_banned, $exclude ) {
     1455                $this->__construct( $group_id, $per_page, $max, $exclude_admins_mods, $exclude_banned, $exclude );     
     1456        }
     1457       
     1458        function __construct( $group_id, $per_page, $max, $exclude_admins_mods, $exclude_banned, $exclude ) {
    14501459                global $bp;
    14511460
    14521461                $this->pag_page = isset( $_REQUEST['mlpage'] ) ? intval( $_REQUEST['mlpage'] ) : 1;
     
    21332142        var $total_request_count;
    21342143
    21352144        function bp_groups_membership_requests_template( $group_id, $per_page, $max ) {
     2145                $this->__construct( $group_id, $per_page, $max );
     2146        }
     2147       
     2148       
     2149        function __construct( $group_id, $per_page, $max ) {
     2150               
    21362151                global $bp;
    21372152
    21382153                $this->pag_page = isset( $_REQUEST['mrpage'] ) ? intval( $_REQUEST['mrpage'] ) : 1;
     
    23032318        var $total_invite_count;
    23042319
    23052320        function bp_groups_invite_template( $user_id, $group_id ) {
    2306                 global $bp;
     2321                $this->__construct( $user_id, $group_id );
     2322        }
     2323               
     2324        function __construct( $user_id, $group_id ) {
    23072325
     2326                global $bp;
     2327               
    23082328                $this->invites = groups_get_invites_for_group( $user_id, $group_id );
    23092329                $this->invite_count = count( $this->invites );
     2330
    23102331        }
    23112332
    23122333        function has_invites() {
  • bp-activity/bp-activity-template.php

     
    8080        var $full_name;
    8181
    8282        function bp_activity_template( $page, $per_page, $max, $include, $sort, $filter, $search_terms, $display_comments, $show_hidden, $exclude, $in ) {
     83                $this->__construct( $page, $per_page, $max, $include, $sort, $filter, $search_terms, $display_comments, $show_hidden, $exclude, $in );
     84        }
     85               
     86        function __construct( $page, $per_page, $max, $include, $sort, $filter, $search_terms, $display_comments, $show_hidden, $exclude, $in ) {
    8387                global $bp;
    8488
    8589                $this->pag_page = isset( $_REQUEST['acpage'] ) ? intval( $_REQUEST['acpage'] ) : $page;
  • bp-xprofile/bp-xprofile-classes.php

     
    77        var $can_delete;
    88        var $group_order;
    99        var $fields;
    10 
     10       
    1111        function bp_xprofile_group( $id = null ) {
     12                $this->__construct($id);
     13        }
     14       
     15        function __construct( $id = null ) {
    1216                global $bp, $wpdb;
    1317
    1418                if ( $id )
     
    280284        var $data;
    281285        var $message = null;
    282286        var $message_type = 'err';
    283 
     287       
    284288        function bp_xprofile_field( $id = null, $user_id = null, $get_data = true ) {
     289                $this->__construct( $id, $user_id, $get_data );
     290        }
     291       
     292        function __construct( $id = null, $user_id = null, $get_data = true ) {
    285293                if ( $id )
    286294                        $this->populate( $id, $user_id, $get_data );
    287295        }
     
    742750        var $field_id;
    743751        var $value;
    744752        var $last_updated;
    745 
     753       
    746754        function bp_xprofile_profiledata( $field_id = null, $user_id = null ) {
     755                $this->__construct( $field_id, $user_id );             
     756        }
     757       
     758        function __construct( $field_id = null, $user_id = null ) {
    747759                if ( $field_id )
    748760                        $this->populate( $field_id, $user_id );
    749761        }