Skip to:
Content

BuddyPress.org

Changeset 7311


Ignore:
Timestamp:
07/25/2013 06:26:35 PM (12 years ago)
Author:
johnjamesjacoby
Message:

Revert more private method scope breaking changes from r7308. See #5108.

Location:
trunk
Files:
3 edited

Legend:

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

    r7310 r7311  
    751751     * @uses bp_profile_last_updated_date() Returns the last updated date for a user.
    752752     */
    753     private function populate() {
     753    public function populate() {
    754754
    755755        if ( bp_is_active( 'xprofile' ) )
     
    784784     * Populates extra fields such as group and friendship counts.
    785785     */
    786     private function populate_extras() {
     786    public function populate_extras() {
    787787
    788788        if ( bp_is_active( 'friends' ) ) {
     
    13481348     * @global wpdb $wpdb WordPress database object
    13491349     */
    1350     private function populate() {
     1350    public function populate() {
    13511351        global $bp, $wpdb;
    13521352
  • trunk/bp-messages/bp-messages-classes.php

    r7310 r7311  
    7272    }
    7373
    74     private function populate( $thread_id, $order ) {
     74    public function populate( $thread_id, $order ) {
    7575        global $wpdb, $bp;
    7676
     
    326326    }
    327327
    328     private function populate( $id ) {
     328    public function populate( $id ) {
    329329        global $wpdb, $bp;
    330330
     
    444444    }
    445445
    446     private function populate() {
     446    public function populate() {
    447447        global $wpdb, $bp;
    448448
  • trunk/bp-xprofile/bp-xprofile-classes.php

    r7310 r7311  
    2424    }
    2525
    26     private function populate( $id ) {
     26    public function populate( $id ) {
    2727        global $wpdb, $bp;
    2828
     
    451451    }
    452452
    453     private function populate( $id, $user_id, $get_data ) {
     453    public function populate( $id, $user_id, $get_data ) {
    454454        global $wpdb, $userdata, $bp;
    455455
     
    10161016    }
    10171017
    1018     private function populate( $field_id, $user_id )  {
     1018    public function populate( $field_id, $user_id )  {
    10191019        global $wpdb, $bp;
    10201020
Note: See TracChangeset for help on using the changeset viewer.