### Eclipse Workspace Patch 1.0
#P wordpress-trunk
Index: wp-includes/plugin.php
===================================================================
--- wp-includes/plugin.php	(revision 17511)
+++ wp-includes/plugin.php	(working copy)
@@ -198,6 +198,7 @@
 	// Do 'all' actions first
 	if ( isset($wp_filter['all']) ) {
 		$all_args = func_get_args();
+		$all_args = array_merge( array( array_shift( $all_args ) ), $all_args );
 		_wp_call_all_hook($all_args);
 	}
 
@@ -451,6 +452,7 @@
 	// Do 'all' actions first
 	if ( isset($wp_filter['all']) ) {
 		$all_args = func_get_args();
+		$all_args = array_merge( array( array_shift( $all_args ) ), $all_args );
 		_wp_call_all_hook($all_args);
 	}
 
