I have got the same problem, but i don’t know what could be the solution
The problem seems to be here in /wp-content/plugins/bbpress/bbp-includes – however I do not know how to solve it:
/** Reply Content *********************************************************/
if ( !empty( $_POST ) )
$reply_content = $_POST;
// Filter and sanitize
$reply_content = apply_filters( ‘bbp_new_reply_pre_content’, $reply_content );
// No reply content
if ( empty( $reply_content ) )
bbp_add_error( ‘bbp_reply_content’, __( ‘ERROR: Your reply cannot be empty.’, ‘bbpress’ ) );
Why is it NOT picking up the content of the edited post?
Do you have active the bbpress anti spam plugin?
I found out that, in my case, the problem was caused by that plugin and
I have solved it by turning off the bbpress anti spam plugin (https://wordpress.org/extend/plugins/bbpress-antispam/)
Wout_m – you are a lifesaver! That stopped the error for me also.
Again, thank you for taking the time to reply and help me out.
Shep