Make WordPress Core


Ignore:
Timestamp:
12/13/2010 09:21:50 PM (15 years ago)
Author:
ryan
Message:

Pink trailing whites.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/class-wp-users-list-table.php

    r16794 r16900  
    88 */
    99class WP_Users_List_Table extends WP_List_Table {
    10    
     10
    1111    var $site_id;
    1212    var $is_site_users;
    13    
     13
    1414    function WP_Users_List_Table() {
    1515        $screen = get_current_screen();
     
    5151            'search' => $usersearch
    5252        );
    53        
     53
    5454        if ( $this->is_site_users )
    5555            $args['blog_id'] = $this->site_id;
     
    8080
    8181        if ( $this->is_site_users ) {
    82             $url = 'site-users.php?id=' . $this->site_id;           
     82            $url = 'site-users.php?id=' . $this->site_id;
    8383            switch_to_blog( $this->site_id );
    8484            $users_of_blog = count_users();
     
    161161        if ( $this->is_site_users )
    162162            unset( $c['posts'] );
    163            
     163
    164164        return $c;
    165165    }
     
    172172            'posts'    => 'post_count',
    173173        );
    174        
     174
    175175        if ( $this->is_site_users )
    176176            unset( $c['posts'] );
     
    214214        $user_object = sanitize_user_object( $user_object, 'display' );
    215215        $email = $user_object->user_email;
    216        
     216
    217217        if ( $this->is_site_users )
    218218            $url = "site-users.php?id={$this->site_id}&";
Note: See TracChangeset for help on using the changeset viewer.