Make WordPress Core

Ticket #19601: 19601.2.diff

File 19601.2.diff, 1.1 KB (added by nacin, 12 years ago)
  • wp-admin/includes/schema.php

     
    362362        elseif ( $offset_or_tz && in_array( $offset_or_tz, timezone_identifiers_list() ) )
    363363                        $timezone_string = $offset_or_tz;
    364364
     365        /* translators: other default ping sites. In most cases you will probably want to leave this blank,
     366           but if there is a service particular to your language or country, you can add it here.
     367           One per line. The default ping site, http://rpc.pingomatic.com/, is automatically included.
     368        */
     369        $ping_sites = trim( 'http://rpc.pingomatic.com/' . "\n" . _x( '', 'default ping sites' ) );
     370
    365371        $options = array(
    366372        'siteurl' => $guessurl,
    367373        'blogname' => __('My Site'),
     
    406412        'active_plugins' => array(),
    407413        'home' => $guessurl,
    408414        'category_base' => '',
    409         'ping_sites' => 'http://rpc.pingomatic.com/',
     415        'ping_sites' => $ping_sites,
    410416        'advanced_edit' => 0,
    411417        'comment_max_links' => 2,
    412418        'gmt_offset' => $gmt_offset,