Changeset 1683
- Timestamp:
- 09/17/2004 02:57:15 PM (22 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
wp-blog-header.php (modified) (2 diffs)
-
wp-includes/template-functions-general.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-blog-header.php
r1677 r1683 109 109 header("HTTP/1.x 404 Not Found"); 110 110 } else if ( !isset($doing_rss) || !$doing_rss ) { 111 @header ('X-Pingback: '. get_ settings('siteurl') . '/wp-admin/xmlrpc.php');111 @header ('X-Pingback: '. get_bloginfo('pingback_url')); 112 112 } else { 113 113 // We're showing a feed, so WP is indeed the only thing that last changed … … 116 116 @header('Last-Modified: '.$wp_last_modified); 117 117 @header('ETag: '.$wp_etag); 118 @header ('X-Pingback: ' . get_ settings('siteurl') . '/wp-admin/xmlrpc.php');118 @header ('X-Pingback: ' . get_bloginfo('pingback_url')); 119 119 120 120 // Support for Conditional GET -
trunk/wp-includes/template-functions-general.php
r1677 r1683 76 76 break; 77 77 case 'pingback_url': 78 $output = get_settings('siteurl') .'/ wp-admin/xmlrpc.php';78 $output = get_settings('siteurl') .'/xmlrpc.php'; 79 79 break; 80 80 case 'stylesheet_url':
Note: See TracChangeset
for help on using the changeset viewer.