Search:
Login
Preferences
Help/Guide
About Trac
Wiki
Timeline
Roadmap
Browse Source
View Tickets
Search
Context Navigation
Back to Ticket #575
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
3
function
fix_bb_path_to_url
(
$url
)
{
4
$url
=
str_replace
(
array
(
'//'
,
'\\\\'
),
array
(
'/'
,
'\\'
),
$url
);
5
return
preg_replace
(
'|:/([^/])|'
,
'://$1'
,
$url
);
6
}
7
8
add_filter
(
'bb_path_to_url'
,
'fix_bb_path_to_url'
,
1
,
-
1
);
9
10
?>
Download in other formats:
Original Format