Forums
-
- Forum
- Posts
-
- Installation
- 28,548
- Troubleshooting
- 62,888
- Themes
- 10,444
- Plugins
- 15,400
- Requests & Feedback
- 14,995
- Showcase
- 3,259
-
The bad quoting issue is fixed, it was caused by the move to the new esc_html() function from WordPress.
Here’s the quick fix. In bb-includes/functions.bb-formatting.php go to line 83 and replace:
$text = esc_html( $text );
with:
$text = wp_specialchars( $text, ENT_NOQUOTES );