Ticket #4001: patch.diff
| File patch.diff, 0.7 kB (added by donncha, 2 years ago) |
|---|
-
wp-includes/formatting.php
old new 1072 1072 $strip = array('%0d', '%0a'); 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) ) 1078 1078 $protocols = array('http', 'https', 'ftp', 'ftps', 'mailto', 'news', 'irc', 'gopher', 'nntp', 'feed', 'telnet');
