diff --git a/src/bp-groups/bp-groups-template.php b/src/bp-groups/bp-groups-template.php
index fdea75c..46e7472 100644
--- a/src/bp-groups/bp-groups-template.php
+++ b/src/bp-groups/bp-groups-template.php
@@ -3606,9 +3606,10 @@ function bp_total_group_count_for_user( $user_id = 0 ) {
  *     @type string   $type               Optional. Sort order of results. 'last_joined',
  *                                        'first_joined', or any of the $type params available in
  *                                        {@link BP_User_Query}. Default: 'last_joined'.
- *     @type string   $search_terms       Optional. Search terms to match. Pass an
+ *     @type string   $search_terms       Optional. Search terms to match. Pass an 
  *                                        empty string to force-disable search, even in
- *                                        the presence of $_REQUEST['s']. Default: null.
+ *                                        the presence of $_REQUEST['members_search'].
+ *                                        Default: null.
  * }
  *
  * @return bool
@@ -3635,8 +3636,8 @@ function bp_group_has_members( $args = '' ) {
 		'type'                => 'last_joined',
 	) );
 
-	if ( is_null( $r['search_terms'] ) && ! empty( $_REQUEST['s'] ) ) {
-		$r['search_terms'] = $_REQUEST['s'];
+	if ( is_null( $r['search_terms'] ) && ! empty( $_REQUEST['members_search'] ) ) {
+		$r['search_terms'] = $_REQUEST['members_search'];
 	}
 
 	$members_template = new BP_Groups_Group_Members_Template( $r );
