Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
04/15/2016 04:59:34 AM (9 years ago)
Author:
tw2113
Message:

Plenty of @since tag updates for the Members component.

See #6402.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/bp-members/classes/class-bp-members-ms-list-table.php ΒΆ

    r10579 r10711  
    9595        global $role;
    9696
    97         // Used to reset the role
     97        // Used to reset the role.
    9898        $reset_role = $role;
    9999
    100         // Temporarly set the role to registered
     100        // Temporarly set the role to registered.
    101101        $role = 'registered';
    102102
    103         // Used to reset the screen id once views are displayed
     103        // Used to reset the screen id once views are displayed.
    104104        $reset_screen_id = $this->screen->id;
    105105
    106         // Temporarly set the screen id to the users one
     106        // Temporarly set the screen id to the users one.
    107107        $this->screen->id = 'users-network';
    108108
    109         // Use the parent function so that other plugins can safely add views
     109        // Use the parent function so that other plugins can safely add views.
    110110        parent::views();
    111111
    112         // Reset the role
     112        // Reset the role.
    113113        $role = $reset_role;
    114114
    115         // Reset the screen id
     115        // Reset the screen id.
    116116        $this->screen->id = $reset_screen_id;
    117117    }
Note: See TracChangeset for help on using the changeset viewer.