From d190b9453cc6f10051dfa1916170ece262d614d8 Mon Sep 17 00:00:00 2001 From: michelvaldrighi Date: Fri, 17 Sep 2004 14:57:15 +0000 Subject: [PATCH] reverting wp-admin/xmlrpc.php changes git-svn-id: https://develop.svn.wordpress.org/trunk@1683 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-blog-header.php | 4 ++-- wp-includes/template-functions-general.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-blog-header.php b/wp-blog-header.php index 9818cfe672..07281dcb2b 100644 --- a/wp-blog-header.php +++ b/wp-blog-header.php @@ -108,14 +108,14 @@ if (1 == $tb) { if (is_404()) { header("HTTP/1.x 404 Not Found"); } else if ( !isset($doing_rss) || !$doing_rss ) { - @header ('X-Pingback: '. get_settings('siteurl') . '/wp-admin/xmlrpc.php'); + @header ('X-Pingback: '. get_bloginfo('pingback_url')); } else { // We're showing a feed, so WP is indeed the only thing that last changed $wp_last_modified = mysql2date('D, d M Y H:i:s', get_lastpostmodified('GMT'), 0).' GMT'; $wp_etag = '"' . md5($wp_last_modified) . '"'; @header('Last-Modified: '.$wp_last_modified); @header('ETag: '.$wp_etag); - @header ('X-Pingback: ' . get_settings('siteurl') . '/wp-admin/xmlrpc.php'); + @header ('X-Pingback: ' . get_bloginfo('pingback_url')); // Support for Conditional GET if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE'])) $client_last_modified = $_SERVER['HTTP_IF_MODIFIED_SINCE']; diff --git a/wp-includes/template-functions-general.php b/wp-includes/template-functions-general.php index 8c3609e6ec..bc5d82972b 100644 --- a/wp-includes/template-functions-general.php +++ b/wp-includes/template-functions-general.php @@ -75,7 +75,7 @@ function get_bloginfo($show='') { $output = get_feed_link('comments_rss2'); break; case 'pingback_url': - $output = get_settings('siteurl') .'/wp-admin/xmlrpc.php'; + $output = get_settings('siteurl') .'/xmlrpc.php'; break; case 'stylesheet_url': $output = get_settings('stylesheet');;