How does it appear in the forum? (I mean in the forum not in the group side), to know if the bug is in xmlrpc requests or if it’s a bbpress bug
Hi Nicola, bbPress XML-RPC is enabled
if I write “más” in buddypress forum’s group the buddypress show “m�s” and the bbpress forum show “m/amp/aacute;s”
http://www.profesionales.net/foro/topic/nuevos-profesionales-y-empresarios-de-la-construccion
I think it is a bug becouse …
If I write something with accents in bbpress works fine,
If I write something with accents in other sites in buddypress (blog, groups, etc …) works fine,
But if I write somethining in buddypress forums with accents I get this error but only in the content, not in the title topic …
see this example http://profesionales.net/groups/profesionales-de-la-informatica/forum/topic/5
I have found a partial solution …
EDIT bp-forum-filters.php and comment all filters
function bp_forums_filter_encode( $content ) {
//$content = htmlentities( $content, ENT_COMPAT, “UTF-8” );
//$content = str_replace( ‘&’, ‘/amp/’, $content );
return $content;
}
function bp_forums_filter_decode( $content ) {
//$content = str_replace( ‘/amp/’, ‘&’, $content );
//$content = @html_entity_decode( $content, ENT_COMPAT, “UTF-8” );
//$content = str_replace( ‘[‘, ‘<‘, $content );
//$content = str_replace( ‘]’, ‘>’, $content );
//$content = stripslashes( wp_filter_kses( $content ) );
return $content;
}
you shoud open a ticket in the trac here:
https://trac.buddypress.org/