Skip to content

Commit

Permalink
Rename new classes to match our coding standards. Fixes #15280.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.automattic.com/wordpress/trunk@16149 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
westi committed Nov 2, 2010
1 parent 9bf103c commit 2bc7106
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions wp-includes/comment.php
Original file line number Diff line number Diff line change
Expand Up @@ -1741,7 +1741,7 @@ function generic_ping($post_id = 0) {
function pingback($content, $post_ID) {
global $wp_version;
include_once(ABSPATH . WPINC . '/class-IXR.php');
include_once(ABSPATH . WPINC . '/class.wp-http-ixr-client.php');
include_once(ABSPATH . WPINC . '/class-wp-http-ixr-client.php');

// original code by Mort (http://mort.mine.nu:8080)
$post_links = array();
Expand Down Expand Up @@ -1871,7 +1871,7 @@ function trackback($trackback_url, $title, $excerpt, $ID) {
function weblog_ping($server = '', $path = '') {
global $wp_version;
include_once(ABSPATH . WPINC . '/class-IXR.php');
include_once(ABSPATH . WPINC . '/class.wp-http-ixr-client.php');
include_once(ABSPATH . WPINC . '/class-wp-http-ixr-client.php');

// using a timeout of 3 seconds should be enough to cover slow servers
$client = new WP_HTTP_IXR_Client($server, ((!strlen(trim($path)) || ('/' == $path)) ? false : $path));
Expand Down
2 changes: 1 addition & 1 deletion xmlrpc.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

include_once(ABSPATH . 'wp-admin/includes/admin.php');
include_once(ABSPATH . WPINC . '/class-IXR.php');
include_once(ABSPATH . WPINC . '/class.wp-xmlrpc-server.php');
include_once(ABSPATH . WPINC . '/class-wp-xmlrpc-server.php');

// Turn off all warnings and errors.
// error_reporting(0);
Expand Down

0 comments on commit 2bc7106

Please sign in to comment.