Make WordPress Core

Changeset 5066


Ignore:
Timestamp:
03/21/2007 12:34:54 AM (19 years ago)
Author:
ryan
Message:

Don't add http:// to relative links. Props donncha. fixes #4001 for 2.1

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.1/wp-includes/formatting.php

    r4894 r5066  
    10731073        $url = str_replace($strip, '', $url);
    10741074        $url = str_replace(';//', '://', $url);
    1075         $url = (!strstr($url, '://')) ? 'http://'.$url : $url;
     1075        $url = (strpos($url, '://') === false && substr( $url, 0, 1 ) != '/' ) ? 'http://'.$url : $url;
    10761076        $url = preg_replace('/&([^#])(?![a-z]{2,8};)/', '&$1', $url);
    10771077        if ( !is_array($protocols) )
Note: See TracChangeset for help on using the changeset viewer.