Make WordPress Core

Ticket #26819: 26819.2.patch

File 26819.2.patch, 464 bytes (added by chriscct7, 11 years ago)
  • src/wp-includes/formatting.php

     
    36213621 * @return string Absolute path.
    36223622 */
    36233623function wp_make_link_relative( $link ) {
    3624         return preg_replace( '|^(https?:)?//[^/]+(/.*)|i', '$2', $link );
     3624        return preg_replace( '|^(https?:)?//[^/]+(/?.*)|i', '$2', $link );
    36253625}
    36263626
    36273627/**