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
  • trunk/src/bp-members/classes/class-bp-members-list-table.php

    r10579 r10711  
    9494        global $role;
    9595
    96         // Used to reset the role
     96        // Used to reset the role.
    9797        $reset_role = $role;
    9898
    99         // Temporarly set the role to registered
     99        // Temporarly set the role to registered.
    100100        $role = 'registered';
    101101
    102         // Used to reset the screen id once views are displayed
     102        // Used to reset the screen id once views are displayed.
    103103        $reset_screen_id = $this->screen->id;
    104104
    105         // Temporarly set the screen id to the users one
     105        // Temporarly set the screen id to the users one.
    106106        $this->screen->id = 'users';
    107107
    108         // Use the parent function so that other plugins can safely add views
     108        // Use the parent function so that other plugins can safely add views.
    109109        parent::views();
    110110
    111         // Reset the role
     111        // Reset the role.
    112112        $role = $reset_role;
    113113
    114         // Reset the screen id
     114        // Reset the screen id.
    115115        $this->screen->id = $reset_screen_id;
    116116    }
Note: See TracChangeset for help on using the changeset viewer.