Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: “/” Escaping issue within my posts

What baptiste posted in another thread worked like a charm:

“Easy fix (hack) in bb-includes/template-functions.php, update this function to look like this:

function get_post_text() {

global $bb_post;

return stripslashes($bb_post->post_text);

return stripslashes(apply_filters( ‘get_topic_title’, $topic->topic_title, $id ));

}

May be an artifact of the wordpress integration – not sure. “

(Made a small change of adding the filter for the titles too… was originally split over two posts.

Skip to toolbar