mirror of
https://github.com/WordPress/WordPress.git
synced 2024-10-31 15:59:44 +01:00
reverting wp-admin/xmlrpc.php changes
git-svn-id: http://svn.automattic.com/wordpress/trunk@1683 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
1ae5d673e4
commit
4133fc887d
@ -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'];
|
||||
|
@ -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');;
|
||||
|
Loading…
Reference in New Issue
Block a user