Ticket #20776: 20776.diff
File 20776.diff, 501 bytes (added by , 9 years ago) |
---|
-
wp-includes/plugin.php
399 399 400 400 do { 401 401 foreach ( (array) current($wp_filter[$tag]) as $the_ ) 402 if ( !is_null($the_['function']) )402 if ( is_callable($the_['function']) ) 403 403 call_user_func_array($the_['function'], array_slice($args, 0, (int) $the_['accepted_args'])); 404 404 405 405 } while ( next($wp_filter[$tag]) !== false );