Changeset 1394
- Timestamp:
- 06/08/2004 09:34:01 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r1389 r1394 1118 1118 ksort($wp_filter[$tag]); 1119 1119 foreach ($wp_filter[$tag] as $priority => $functions) { 1120 foreach($functions as $function) { 1120 if (!is_null($functions)) { 1121 foreach($functions as $function) { 1121 1122 $string = $function($string); 1122 } 1123 } 1124 } 1123 1125 } 1124 1126 }
Note: See TracChangeset
for help on using the changeset viewer.