Prevent “nofollow” from Being Inserted into BBPress Posts

As a temporary (but poor fix) the below code can be added to “functions.php”.

//Remove nofollow
function rm_nofollow($txt){
$txt=str_replace(' rel="nofollow"','',$txt);
return $txt;
}
add_filter('bbp_get_topic_content','rm_nofollow',20);
add_filter('bbp_get_reply_content','rm_nofollow',20);