Ticket #3975: plugin_php.patch
| File plugin_php.patch, 560 bytes (added by , 19 years ago) |
|---|
-
plugin.php
26 26 foreach( (array) current($wp_filter[$tag]) as $the_ ) 27 27 if ( !is_null($the_['function']) ){ 28 28 $args[1] = $string; 29 $string = call_user_func_array($the_['function'], array_slice($args, 1, (int) $the_['accepted_args'] ));29 $string = call_user_func_array($the_['function'], array_slice($args, 1, (int) $the_['accepted_args'] + 1)); 30 30 } 31 31 32 32 } while ( next($wp_filter[$tag]) );