Make WordPress Core

Ticket #22961: 22961.patch

File 22961.patch, 1.5 KB (added by chriscct7, 10 years ago)
  • src/wp-admin/options-discussion.php

     
    6666<br />
    6767<label for="default_ping_status">
    6868<input name="default_ping_status" type="checkbox" id="default_ping_status" value="open" <?php checked('open', get_option('default_ping_status')); ?> />
    69 <?php _e('Allow link notifications from other blogs (pingbacks and trackbacks)'); ?></label>
     69<?php _e('Allow link notifications from other blogs (pingbacks and trackbacks) on new articles'); ?></label>
    7070<br />
    7171<label for="default_comment_status">
    7272<input name="default_comment_status" type="checkbox" id="default_comment_status" value="open" <?php checked('open', get_option('default_comment_status')); ?> />
  • src/wp-includes/class-wp-xmlrpc-server.php

     
    493493                                'option'        => 'default_comment_status'
    494494                        ),
    495495                        'default_ping_status' => array(
    496                                 'desc'          => __( 'Allow link notifications from other blogs (pingbacks and trackbacks)' ),
     496                                'desc'          => __( 'Allow link notifications from other blogs (pingbacks and trackbacks) on new articles' ),
    497497                                'readonly'      => false,
    498498                                'option'        => 'default_ping_status'
    499499                        )