Make WordPress Core

Ticket #26819: 26819.patch

File 26819.patch, 456 bytes (added by bcworkz, 12 years ago)
  • src/wp-includes/formatting.php

     
    30733073 * @return string Absolute path.
    30743074 */
    30753075function wp_make_link_relative( $link ) {
    3076         return preg_replace( '|https?://[^/]+(/.*)|i', '$1', $link );
     3076        return preg_replace( '|https?://[^/]+(/?.*)|i', '$1', $link );
    30773077}
    30783078
    30793079/**