Changeset 5065
- Timestamp:
- 03/21/07 00:29:40 (1 year ago)
- Files:
-
- trunk/wp-includes/formatting.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-includes/formatting.php
r5021 r5065 1073 1073 $url = str_replace($strip, '', $url); 1074 1074 $url = str_replace(';//', '://', $url); 1075 $url = (strpos($url, '://') === false ) ? 'http://'.$url : $url;1075 $url = (strpos($url, '://') === false && substr( $url, 0, 1 ) != '/' ) ? 'http://'.$url : $url; 1076 1076 $url = preg_replace('/&([^#])(?![a-z]{2,8};)/', '&$1', $url); 1077 1077 if ( !is_array($protocols) )
