Changeset 2198
- Timestamp:
- 02/02/2005 06:07:11 AM (21 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/functions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r2197 r2198 891 891 global $wp_filter; 892 892 893 $args = array($string) + array_slice(func_get_args(), 3);894 895 893 merge_filters($tag); 896 894 … … 899 897 if (!is_null($functions)) { 900 898 foreach($functions as $function) { 899 $args = array($string) + array_slice(func_get_args(), 3); 901 900 $string = call_user_func_array($function, $args); 902 901 }
Note: See TracChangeset
for help on using the changeset viewer.