### Eclipse Workspace Patch 1.0
#P wordpress-trunk
|
|
|
198 | 198 | // Do 'all' actions first |
199 | 199 | if ( isset($wp_filter['all']) ) { |
200 | 200 | $all_args = func_get_args(); |
| 201 | $all_args = array_merge( array(array_shift( $all_args )), $all_args ); |
201 | 202 | _wp_call_all_hook($all_args); |
202 | 203 | } |
203 | 204 | |
… |
… |
|
451 | 452 | // Do 'all' actions first |
452 | 453 | if ( isset($wp_filter['all']) ) { |
453 | 454 | $all_args = func_get_args(); |
| 455 | $all_args = array_merge( array(array_shift( $all_args )), $all_args ); |
454 | 456 | _wp_call_all_hook($all_args); |
455 | 457 | } |
456 | 458 | |