Changeset 8944 for trunk/wp-includes/feed.php
- Timestamp:
- 09/21/2008 08:41:25 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/feed.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/feed.php
r8800 r8944 495 495 function self_link() { 496 496 echo 'http' 497 . ( $_SERVER['https'] == 'on'? 's' : '' ) . '://'497 . ( (isset($_SERVER['https']) && $_SERVER['https'] == 'on') ? 's' : '' ) . '://' 498 498 . $_SERVER['HTTP_HOST'] 499 499 . wp_specialchars(stripslashes($_SERVER['REQUEST_URI']), 1);
Note: See TracChangeset
for help on using the changeset viewer.