Forums
-
- Forum
- Posts
-
- Installation
- 28,521
- Troubleshooting
- 62,696
- Themes
- 10,443
- Plugins
- 15,379
- Requests & Feedback
- 14,981
- Showcase
- 3,257
-
Save this file as patch-to-URL.php and upload to /my-plugins/ directory:
<?php
function fix_bb_path_to_url( $url ) {
return preg_replace( '|
([^/])|', '
/$1', $url );
}
add_filter( 'bb_path_to_url', 'fix_bb_path_to_url', 1, -1 );
?>
Trent