Index: src/bp-activity/bp-activity-admin.php
===================================================================
--- src/bp-activity/bp-activity-admin.php	(revision 11251)
+++ src/bp-activity/bp-activity-admin.php	(working copy)
@@ -393,8 +393,8 @@
 					 * Remove moderation and blacklist checks in case we want to ham an activity
 					 * which contains one of these listed keys.
 					 */
-					remove_action( 'bp_activity_before_save', 'bp_activity_check_moderation_keys', 2, 1 );
-					remove_action( 'bp_activity_before_save', 'bp_activity_check_blacklist_keys',  2, 1 );
+					remove_action( 'bp_activity_before_save', 'bp_activity_check_moderation_keys', 2 );
+					remove_action( 'bp_activity_before_save', 'bp_activity_check_blacklist_keys',  2 );
 
 					bp_activity_mark_as_ham( $activity );
 					$result = $activity->save();
Index: src/bp-activity/bp-activity-filters.php
===================================================================
--- src/bp-activity/bp-activity-filters.php	(revision 11251)
+++ src/bp-activity/bp-activity-filters.php	(working copy)
@@ -603,7 +603,7 @@
 	ob_end_clean();
 
 	// Remove the temporary filter.
-	remove_filter( 'bp_get_activity_css_class', 'bp_activity_newest_class', 10, 1 );
+	remove_filter( 'bp_get_activity_css_class', 'bp_activity_newest_class', 10 );
 
 	if ( ! empty( $newest_activities['last_recorded'] ) ) {
 		$response['bp_activity_newest_activities'] = $newest_activities;
Index: src/bp-activity/bp-activity-functions.php
===================================================================
--- src/bp-activity/bp-activity-functions.php	(revision 11251)
+++ src/bp-activity/bp-activity-functions.php	(working copy)
@@ -1445,7 +1445,7 @@
 	$action = apply_filters( 'bp_activity_generate_action_string', $activity->action, $activity );
 
 	// Remove the filter for future activity items.
-	remove_filter( 'bp_activity_generate_action_string', $actions->{$activity->component}->{$activity->type}['format_callback'], 10, 2 );
+	remove_filter( 'bp_activity_generate_action_string', $actions->{$activity->component}->{$activity->type}['format_callback'], 10 );
 
 	return $action;
 }
@@ -3321,7 +3321,7 @@
 
 	// If Akismet is active, and this was a manual spam/ham request, stop Akismet checking the activity.
 	if ( 'by_a_person' == $source && !empty( $bp->activity->akismet ) ) {
-		remove_action( 'bp_activity_before_save', array( $bp->activity->akismet, 'check_activity' ), 4, 1 );
+		remove_action( 'bp_activity_before_save', array( $bp->activity->akismet, 'check_activity' ), 4 );
 
 		// Build data package for Akismet.
 		$activity_data = BP_Akismet::build_akismet_data_package( $activity );
@@ -3368,7 +3368,7 @@
 
 	// If Akismet is active, and this was a manual spam/ham request, stop Akismet checking the activity.
 	if ( 'by_a_person' == $source && !empty( $bp->activity->akismet ) ) {
-		remove_action( 'bp_activity_before_save', array( $bp->activity->akismet, 'check_activity' ), 4, 1 );
+		remove_action( 'bp_activity_before_save', array( $bp->activity->akismet, 'check_activity' ), 4 );
 
 		// Build data package for Akismet.
 		$activity_data = BP_Akismet::build_akismet_data_package( $activity );
Index: src/bp-blogs/bp-blogs-activity.php
===================================================================
--- src/bp-blogs/bp-blogs-activity.php	(revision 11251)
+++ src/bp-blogs/bp-blogs-activity.php	(working copy)
@@ -547,7 +547,7 @@
 		switch_to_blog( $blog_id );
 
 		// Use comments_open().
-		remove_filter( 'comments_open', 'bp_comments_open', 10, 2 );
+		remove_filter( 'comments_open', 'bp_comments_open', 10 );
 		$open = comments_open( $activity->secondary_item_id );
 		add_filter( 'comments_open', 'bp_comments_open', 10, 2 );
 
@@ -806,7 +806,7 @@
 	);
 
 	// Prevent separate activity entry being made.
-	remove_action( 'comment_post', 'bp_activity_post_type_comment', 10, 2 );
+	remove_action( 'comment_post', 'bp_activity_post_type_comment', 10 );
 
 	// Handle multisite.
 	switch_to_blog( $parent_activity->item_id );
@@ -970,8 +970,8 @@
 	$old_comment_status  = $post_comment_status;
 
 	// No need to edit the activity, as it's the activity who's updating the comment
-	remove_action( 'transition_comment_status',     'bp_activity_transition_post_type_comment_status', 10, 3 );
-	remove_action( 'bp_activity_post_type_comment', 'bp_blogs_comment_sync_activity_comment',          10, 4 );
+	remove_action( 'transition_comment_status',     'bp_activity_transition_post_type_comment_status', 10 );
+	remove_action( 'bp_activity_post_type_comment', 'bp_blogs_comment_sync_activity_comment',          10 );
 
 	if ( 1 === $activity->is_spam && 'spam' !== $post_comment_status ) {
 		wp_spam_comment( $post_comment_id );
Index: src/bp-core/admin/bp-core-admin-functions.php
===================================================================
--- src/bp-core/admin/bp-core-admin-functions.php	(revision 11251)
+++ src/bp-core/admin/bp-core-admin-functions.php	(working copy)
@@ -1141,7 +1141,7 @@
 
 	$loader = basename( constant( 'BP_PLUGIN_DIR' ) ) . '/bp-loader.php';
 
-	remove_action( "after_plugin_row_{$loader}", 'wp_plugin_update_row', 10, 2 );
+	remove_action( "after_plugin_row_{$loader}", 'wp_plugin_update_row', 10 );
 	add_action( "after_plugin_row_{$loader}", 'bp_core_admin_php52_plugin_row', 10, 2 );
 }
 add_action( 'load-plugins.php', 'bp_core_admin_maybe_disable_update_row_for_php53_requirement', 100 );
Index: src/bp-core/bp-core-functions.php
===================================================================
--- src/bp-core/bp-core-functions.php	(revision 11251)
+++ src/bp-core/bp-core-functions.php	(working copy)
@@ -2372,7 +2372,7 @@
 		return;
 	}
 
-	remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10, 0 );
+	remove_action( 'wp_head', 'adjacent_posts_rel_link_wp_head', 10 );
 }
 add_action( 'bp_init', 'bp_remove_adjacent_posts_rel_link' );
 
Index: src/bp-core/classes/class-bp-attachment.php
===================================================================
--- src/bp-core/classes/class-bp-attachment.php	(revision 11251)
+++ src/bp-core/classes/class-bp-attachment.php	(working copy)
@@ -273,11 +273,11 @@
 
 		// Restore WordPress Uploads data.
 		if ( ! empty( $upload_dir_filter ) ) {
-			remove_filter( 'upload_dir', $upload_dir_filter, 10, $this->upload_dir_filter_args );
+			remove_filter( 'upload_dir', $upload_dir_filter, 10 );
 		}
 
 		// Remove the pre WordPress 4.0 static filter.
-		remove_filter( 'wp_handle_upload_prefilter', array( $this, 'validate_upload' ), 10, 1 );
+		remove_filter( 'wp_handle_upload_prefilter', array( $this, 'validate_upload' ), 10 );
 
 		// Finally return the uploaded file or the error.
 		return $this->attachment;
Index: src/bp-core/deprecated/2.5.php
===================================================================
--- src/bp-core/deprecated/2.5.php	(revision 11251)
+++ src/bp-core/deprecated/2.5.php	(working copy)
@@ -62,7 +62,7 @@
 		'settings-verify-email-change',
 	);
 
-	remove_filter( 'bp_email_get_property', 'bp_core_deprecated_email_filters', 20, 4 );
+	remove_filter( 'bp_email_get_property', 'bp_core_deprecated_email_filters', 20 );
 	$email_type = $email->get( 'type' );
 	$tokens     = $email->get( 'tokens' );
 	add_filter( 'bp_email_get_property', 'bp_core_deprecated_email_filters', 20, 4 );
Index: src/bp-members/bp-members-functions.php
===================================================================
--- src/bp-members/bp-members-functions.php	(revision 11251)
+++ src/bp-members/bp-members-functions.php	(working copy)
@@ -1162,8 +1162,8 @@
 	// As of BuddyPress 2.0, last_activity is no longer stored in usermeta.
 	// However, we mirror it there for backward compatibility. Do not use!
 	// Remove our warning and re-add.
-	remove_filter( 'update_user_metadata', '_bp_update_user_meta_last_activity_warning', 10, 4 );
-	remove_filter( 'get_user_metadata', '_bp_get_user_meta_last_activity_warning', 10, 3 );
+	remove_filter( 'update_user_metadata', '_bp_update_user_meta_last_activity_warning', 10 );
+	remove_filter( 'get_user_metadata', '_bp_get_user_meta_last_activity_warning', 10 );
 	bp_update_user_meta( $user_id, 'last_activity', $time );
 	add_filter( 'update_user_metadata', '_bp_update_user_meta_last_activity_warning', 10, 4 );
 	add_filter( 'get_user_metadata', '_bp_get_user_meta_last_activity_warning', 10, 3 );
Index: src/bp-members/classes/class-bp-members-admin.php
===================================================================
--- src/bp-members/classes/class-bp-members-admin.php	(revision 11251)
+++ src/bp-members/classes/class-bp-members-admin.php	(working copy)
@@ -1306,7 +1306,7 @@
 	 * @since 2.1.0
 	 */
 	public function remove_edit_profile_url_filter() {
-		remove_filter( 'bp_members_edit_profile_url', array( $this, 'filter_adminbar_profile_link' ), 10, 3 );
+		remove_filter( 'bp_members_edit_profile_url', array( $this, 'filter_adminbar_profile_link' ), 10 );
 	}
 
 	/** Signups Management ****************************************************/
Index: src/bp-templates/bp-legacy/buddypress-functions.php
===================================================================
--- src/bp-templates/bp-legacy/buddypress-functions.php	(revision 11251)
+++ src/bp-templates/bp-legacy/buddypress-functions.php	(working copy)
@@ -969,7 +969,7 @@
 	}
 
 	if ( ! empty( $last_recorded ) ) {
-		remove_filter( 'bp_get_activity_css_class', 'bp_activity_newest_class', 10, 1 );
+		remove_filter( 'bp_get_activity_css_class', 'bp_activity_newest_class', 10 );
 	}
 
 	exit;
Index: src/bp-xprofile/bp-xprofile-filters.php
===================================================================
--- src/bp-xprofile/bp-xprofile-filters.php	(revision 11251)
+++ src/bp-xprofile/bp-xprofile-filters.php	(working copy)
@@ -328,7 +328,7 @@
  * - URL's are made clickable.
  *
  * To disable globally:
- *     remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 9, 3 );
+ *     remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 9 );
  *
  * To disable for a single field, use the 'Autolink' settings in Dashboard > Users > Profile Fields.
  *
