Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
04/14/2010 05:01:52 PM (16 years ago)
Author:
apeatling
Message:

Fix incorrect hooks in template. Fix issues with ordering when getting specific users via the members loop.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/1.2/bp-core.php

    r2903 r2923  
    532532        'search_terms' => false, // Limit to users that match these search terms
    533533
     534        'include' => false, // Pass comma separated list of user_ids to limit to only these users
    534535        'per_page' => 20, // The number of results to return per page
    535536        'page' => 1, // The page to return if limiting per page
     
    540541    extract( $params, EXTR_SKIP );
    541542
    542     return apply_filters( 'bp_core_get_users', BP_Core_User::get_users( $type, $per_page, $page, $user_id, $search_terms, $populate_extras ), &$params );
     543    return apply_filters( 'bp_core_get_users', BP_Core_User::get_users( $type, $per_page, $page, $user_id, $include, $search_terms, $populate_extras ), &$params );
    543544}
    544545
Note: See TracChangeset for help on using the changeset viewer.