Changeset 9769
- Timestamp:
- 11/18/2008 11:04:42 PM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/feed.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/feed.php
r9753 r9769 499 499 */ 500 500 function self_link() { 501 $host = @parse_url(get_option('home')); 502 $host = $host['host']; 501 503 echo clean_url( 502 504 'http' 503 505 . ( (isset($_SERVER['https']) && $_SERVER['https'] == 'on') ? 's' : '' ) . '://' 504 . $ _SERVER['HTTP_HOST']506 . $host 505 507 . stripslashes($_SERVER['REQUEST_URI']) 506 508 );
Note: See TracChangeset
for help on using the changeset viewer.