Ticket #22961: 22961.patch
File 22961.patch, 1.5 KB (added by , 10 years ago) |
---|
-
src/wp-admin/options-discussion.php
66 66 <br /> 67 67 <label for="default_ping_status"> 68 68 <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> 70 70 <br /> 71 71 <label for="default_comment_status"> 72 72 <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
493 493 'option' => 'default_comment_status' 494 494 ), 495 495 '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' ), 497 497 'readonly' => false, 498 498 'option' => 'default_ping_status' 499 499 )