Index: bp-activity/bp-activity-template.php
===================================================================
--- bp-activity/bp-activity-template.php
+++ bp-activity/bp-activity-template.php
@@ -555,7 +555,7 @@ function bp_has_activities( $args = '' ) {
 		'update_meta_cache' => true,
 	);
 
-	$r = wp_parse_args( $args, $defaults );
+	$r = bp_parse_args( $args, $defaults, 'has_activities' );
 	extract( $r );
 
 	// Translate various values for 'display_comments'
Index: bp-blogs/bp-blogs-template.php
===================================================================
--- bp-blogs/bp-blogs-template.php
+++ bp-blogs/bp-blogs-template.php
@@ -377,7 +377,7 @@ function bp_has_blogs( $args = '' ) {
 		'update_meta_cache' => true,
 	);
 
-	$r = wp_parse_args( $args, $defaults );
+	$r = bp_parse_args( $args, $defaults, 'has_blogs' );
 	extract( $r );
 
 	if ( is_null( $search_terms ) ) {
Index: bp-forums/bp-forums-template.php
===================================================================
--- bp-forums/bp-forums-template.php
+++ bp-forums/bp-forums-template.php
@@ -480,7 +480,7 @@ function bp_has_forum_topics( $args = '' ) {
 		'do_stickies'  => $do_stickies
 	);
 
-	$r = wp_parse_args( $args, $defaults );
+	$r = bp_parse_args( $args, $defaults, 'has_forum_topics' );
 	extract( $r );
 
 	// If we're viewing a tag URL in the directory, let's override the type and
@@ -1844,7 +1844,7 @@ function bp_has_forum_topic_posts( $args = '' ) {
 		'order'    => 'ASC'
 	);
 
-	$r = wp_parse_args( $args, $defaults );
+	$r = bp_parse_args( $args, $defaults, 'has_forum_topic_posts' );
 	extract( $r, EXTR_SKIP );
 
 	if ( empty( $topic_id ) && bp_is_groups_component() && bp_is_current_action( 'forum' ) && bp_is_action_variable( 'topic', 0 ) && bp_action_variable( 1 ) )
Index: bp-groups/bp-groups-template.php
===================================================================
--- bp-groups/bp-groups-template.php
+++ bp-groups/bp-groups-template.php
@@ -333,7 +333,7 @@ function bp_has_groups( $args = '' ) {
 		'update_meta_cache' => true,
 	);
 
-	$r = wp_parse_args( $args, $defaults );
+	$r = bp_parse_args( $args, $defaults, 'has_groups' );
 
 	if ( empty( $r['search_terms'] ) ) {
 		if ( isset( $_REQUEST['group-filter-box'] ) && !empty( $_REQUEST['group-filter-box'] ) )
Index: bp-members/bp-members-template.php
===================================================================
--- bp-members/bp-members-template.php
+++ bp-members/bp-members-template.php
@@ -300,7 +300,7 @@ function bp_has_members( $args = '' ) {
 		'populate_extras' => true           // Fetch usermeta? Friend count, last active etc.
 	);
 
-	$r = wp_parse_args( $args, $defaults );
+	$r = bp_parse_args( $args, $defaults, 'has_members' );
 	extract( $r );
 
 	// Pass a filter if ?s= is set.
Index: bp-notifications/bp-notifications-template.php
===================================================================
--- bp-notifications/bp-notifications-template.php
+++ bp-notifications/bp-notifications-template.php
@@ -478,7 +478,7 @@ function bp_has_notifications( $args = '' ) {
 	}
 
 	// Parse the args
-	$r = wp_parse_args( $args, array(
+	$r = bp_parse_args( $args, array(
 		'user_id'      => $user_id,
 		'is_new'       => $is_new,
 		'page'         => 1,
@@ -486,7 +486,7 @@ function bp_has_notifications( $args = '' ) {
 		'max'          => false,
 		'search_terms' => isset( $_REQUEST['s'] ) ? stripslashes( $_REQUEST['s'] ) : '',
 		'page_arg'     => 'npage',
-	) );
+	), 'has_notifications' );
 
 	// Get the notifications
 	$query_loop = new BP_Notifications_Template( $r );
Index: bp-xprofile/bp-xprofile-template.php
===================================================================
--- bp-xprofile/bp-xprofile-template.php
+++ bp-xprofile/bp-xprofile-template.php
@@ -179,7 +179,7 @@ function bp_has_profile( $args = '' ) {
 		'update_meta_cache'   => true,
 	);
 
-	$r = wp_parse_args( $args, $defaults );
+	$r = bp_parse_args( $args, $defaults, 'has_profile' );
 	extract( $r, EXTR_SKIP );
 
 	$profile_template = new BP_XProfile_Data_Template( $user_id, $profile_group_id, $hide_empty_groups, $fetch_fields, $fetch_field_data, $exclude_groups, $exclude_fields, $hide_empty_fields, $fetch_visibility_level, $update_meta_cache );
