Make WordPress Core

Changeset 1007


Ignore:
Timestamp:
03/25/2004 06:11:28 AM (21 years ago)
Author:
saxmatt
Message:

Typo fixes to do_action and generic_ping

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/functions.php

    r1002 r1007  
    598598function generic_ping($post_id = 0) {
    599599    $services = get_settings('ping_sites');
    600     $services = preg_replace("|(\s)+|", '$1', $serivces); // Kill dupe lines
     600    $services = preg_replace("|(\s)+|", '$1', $services); // Kill dupe lines
    601601    $services = explode("\n", trim($services));
    602602    foreach ($services as $service) {
     
    12871287
    12881288function do_action($tag, $string) {
    1289     return apply_filter($tag, $string);
     1289    return apply_filters($tag, $string);
    12901290}
    12911291
Note: See TracChangeset for help on using the changeset viewer.