Changeset 5930
- Timestamp:
- 03/16/2012 02:46:06 AM (13 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-blogs/bp-blogs-classes.php
r5729 r5930 23 23 var $blog_id; 24 24 25 function bp_blogs_blog( $id = null ) {26 $this->__construct( $id );27 }28 29 25 function __construct( $id = null ) { 30 26 if ( !empty( $id ) ) { -
trunk/bp-blogs/bp-blogs-widgets.php
r5686 r5930 21 21 22 22 class BP_Blogs_Recent_Posts_Widget extends WP_Widget { 23 24 function bp_blogs_recent_posts_widget() {25 $this->__construct();26 }27 23 28 24 function __construct() { -
trunk/bp-core/bp-core-widgets.php
r5751 r5930 14 14 15 15 class BP_Core_Members_Widget extends WP_Widget { 16 17 function bp_core_members_widget() {18 $this->__construct();19 }20 16 21 17 function __construct() { … … 150 146 class BP_Core_Whos_Online_Widget extends WP_Widget { 151 147 152 function bp_core_whos_online_widget() {153 $this->__construct();154 }155 156 148 function __construct() { 157 149 $widget_ops = array( 'description' => __( 'Avatars of users who are currently online', 'buddypress' ) ); … … 217 209 218 210 class BP_Core_Recently_Active_Widget extends WP_Widget { 219 220 function bp_core_recently_active_widget() {221 $this->__construct();222 }223 211 224 212 function __construct() { -
trunk/bp-forums/bp-forums-bbpress-sa.php
r5885 r5930 144 144 class BPDB extends WPDB { 145 145 var $db_servers = array(); 146 147 function BPDB( $dbuser, $dbpassword, $dbname, $dbhost ) {148 $this->__construct( $dbuser, $dbpassword, $dbname, $dbhost );149 }150 146 151 147 function __construct( $dbuser, $dbpassword, $dbname, $dbhost ) { -
trunk/bp-forums/bp-forums-template.php
r5927 r5930 993 993 var $order; 994 994 995 function BP_Forums_Template_Topic( $topic_id, $per_page, $max, $order ) {996 $this->__construct( $topic_id, $per_page, $max, $order );997 }998 999 995 function __construct( $topic_id, $per_page, $max, $order ) { 1000 996 global $bp, $current_user, $forum_template; -
trunk/bp-groups/bp-groups-template.php
r5927 r5930 1685 1685 var $total_group_count; 1686 1686 1687 function bp_groups_group_members_template( $group_id, $per_page, $max, $exclude_admins_mods, $exclude_banned, $exclude ) {1688 $this->__construct( $group_id, $per_page, $max, $exclude_admins_mods, $exclude_banned, $exclude );1689 }1690 1691 1687 function __construct( $group_id, $per_page, $max, $exclude_admins_mods, $exclude_banned, $exclude ) { 1692 1688 … … 2408 2404 var $total_request_count; 2409 2405 2410 function bp_groups_membership_requests_template( $group_id, $per_page, $max ) {2411 $this->__construct( $group_id, $per_page, $max );2412 }2413 2414 2415 2406 function __construct( $group_id, $per_page, $max ) { 2416 2407 … … 2578 2569 var $pag_links; 2579 2570 var $total_invite_count; 2580 2581 function bp_groups_invite_template( $user_id, $group_id ) {2582 $this->__construct( $user_id, $group_id );2583 }2584 2571 2585 2572 function __construct( $user_id, $group_id ) {
Note: See TracChangeset
for help on using the changeset viewer.