Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Can someone please take a look at this…

Sorry to get back to you late. Copy this into a file and call it path-to-url.php and drop it into your /my-plugins/ folder. If you don’t have one, create it and drop that file into it.

<?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 );

?>

It is an error that mdawaffe created that patch for at:

https://trac.bbpress.org/attachment/ticket/575/path-to-url.php

Trent

Skip to toolbar