Make WordPress Core

Ticket #15053: get_users.diff

File get_users.diff, 1.9 KB (added by scribu, 14 years ago)

Call get_users() directly

  • wp-includes/user.php

     
    563563 * @uses $blog_id The Blog id of the blog for those that use more than one blog
    564564 *
    565565 * @param int $id Blog ID.
    566  * @param array $args Optional query arguments passed to get_users()
    567566 * @return array List of users that are part of that Blog ID
    568567 */
    569568function get_users_of_blog( $id = '', $args = array() ) {
     
    572571        if ( empty($id) )
    573572                $id = (int) $blog_id;
    574573
    575         $args['blog_id'] = $id;
    576         return get_users( $args );
     574        return get_users( array( 'blog_id' => $id ) );
    577575}
    578576
    579577/**
  • wp-admin/includes/default-list-tables.php

     
    29582958                                        case 'users': ?>
    29592959                                                <td valign="top">
    29602960                                                        <?php
    2961                                                         $blogusers = get_users_of_blog( $blog['blog_id'], array('number' => 6) );
     2961                                                        $blogusers = get_users( array( 'blog_id' => $blog['blog_id'], 'number' => 6) );
    29622962                                                        if ( is_array( $blogusers ) ) {
    29632963                                                                $blogusers_warning = '';
    29642964                                                                if ( count( $blogusers ) > 5 ) {
  • wp-admin/network/sites.php

     
    257257                                <?php }
    258258
    259259                                // Site users
    260                                 $blogusers = get_users_of_blog( $id, array('number' => 20) );
     260                                $blogusers = get_users( array( 'blog_id' => $id, 'number' => 20 ) );
    261261                                if ( is_array( $blogusers ) ) {
    262262                                        echo '<div id="blogedit_blogusers" class="postbox"><h3 class="hndle"><span>' . __( 'Site Users' ) . '</span></h3><div class="inside">';
    263263                                        echo '<table class="form-table">';