THe same happens with bbPress. At this point there is no solution.
Ok solved the problem by adding “stripslashes”, here is the hack to bp-core-templatetags.php file:
function bp_get_the_site_member_name() {
global $site_members_template;
return stripslashes( apply_filters( ‘bp_get_the_site_member_name’, $site_members_template->member->fullname ));
}
add_filter( ‘bp_get_the_site_member_name’, ‘wp_filter_kses’ );
@Rohan Kapoor, I solved the bbpress part by hacking the bb-includes/template-functions.php file:
function get_post_text() {
global $bb_post;
return stripslashes($bb_post->post_text);
}
And
return stripslashes(apply_filters( ‘get_topic_title’, $topic->topic_title, $id ));
Hope this helps people with similar problems.
Korhan-
Please report this as a bug in trac by creating a new ticket. You login to trac with the same credentials you use to log into this site.
Jeff, all is done. Ticket #906
Korhan, great! Thank you!
Thanks a lot for that fix!