Changeset 33734 for trunk/src/wp-includes/plugin.php
- Timestamp:
- 08/25/2015 08:27:56 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/plugin.php
r32964 r33734 208 208 209 209 do { 210 foreach ( (array) current($wp_filter[$tag]) as $the_ )210 foreach ( (array) current($wp_filter[$tag]) as $the_ ) 211 211 if ( !is_null($the_['function']) ){ 212 212 $args[1] = $value; … … 265 265 266 266 do { 267 foreach ( (array) current($wp_filter[$tag]) as $the_ )267 foreach ( (array) current($wp_filter[$tag]) as $the_ ) 268 268 if ( !is_null($the_['function']) ) 269 269 $args[0] = call_user_func_array($the_['function'], array_slice($args, 0, (int) $the_['accepted_args'])); … … 575 575 576 576 do { 577 foreach ( (array) current($wp_filter[$tag]) as $the_ )577 foreach ( (array) current($wp_filter[$tag]) as $the_ ) 578 578 if ( !is_null($the_['function']) ) 579 579 call_user_func_array($the_['function'], array_slice($args, 0, (int) $the_['accepted_args'])); … … 846 846 reset( $wp_filter['all'] ); 847 847 do { 848 foreach ( (array) current($wp_filter['all']) as $the_ )848 foreach ( (array) current($wp_filter['all']) as $the_ ) 849 849 if ( !is_null($the_['function']) ) 850 850 call_user_func_array($the_['function'], $args);
Note: See TracChangeset
for help on using the changeset viewer.