Changeset 9770
- Timestamp:
- 11/18/08 23:07:05 (2 months ago)
- Files:
-
- branches/2.6/wp-includes/feed.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.6/wp-includes/feed.php
r9754 r9770 496 496 */ 497 497 function self_link() { 498 $host = @parse_url(get_option('home')); 499 $host = $host['host']; 498 500 echo clean_url( 499 501 'http' 500 502 . ( (isset($_SERVER['https']) && $_SERVER['https'] == 'on') ? 's' : '' ) . '://' 501 . $ _SERVER['HTTP_HOST']503 . $host 502 504 . stripslashes($_SERVER['REQUEST_URI']) 503 505 );
