Ticket #575: path-to-url.2.php

File path-to-url.2.php, 232 bytes (added by mdawaffe, 6 years ago)

VERSION 2

Line 
1<?php
2
3function fix_bb_path_to_url( $url ) {
4        $url = str_replace(array('//', '\\\\'), array('/', '\\'), $url);
5        return preg_replace( '|:/([^/])|', '://$1', $url );
6}
7
8add_filter( 'bb_path_to_url', 'fix_bb_path_to_url', 1, -1 );
9
10?>