Changeset 1007
- Timestamp:
- 03/25/2004 06:11:28 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r1002 r1007 598 598 function generic_ping($post_id = 0) { 599 599 $services = get_settings('ping_sites'); 600 $services = preg_replace("|(\s)+|", '$1', $ser ivces); // Kill dupe lines600 $services = preg_replace("|(\s)+|", '$1', $services); // Kill dupe lines 601 601 $services = explode("\n", trim($services)); 602 602 foreach ($services as $service) { … … 1287 1287 1288 1288 function do_action($tag, $string) { 1289 return apply_filter ($tag, $string);1289 return apply_filters($tag, $string); 1290 1290 } 1291 1291
Note: See TracChangeset
for help on using the changeset viewer.