Hey Jafo232:
Thanks for this nice plugin. It seems to be working except for one thing, when a post is created through WP and posted to a VB forum, the text is incorrectly posted as ISO-8859-1 while the title is posted as UTF-8.
Everything in my forum is set to UTF-8 (DB collation, tables collation, columns, the languages and the HTML Charset Set).
Only workaround i found was to change line 162 of vbbridge.php from:
PHP Code:
$_POST['content'] = fetch_censored_text(utf8_decode($_POST['content']));
to:
PHP Code:
$_POST['content'] = fetch_censored_text($_POST['content']);
Any ideas why this is happening? It doesn't make sense to me that it is happening for the post content and not for the title.
Additionally, is there a way to be able to use the %author% variable in the permalink? I would like to have my permalinks set to something like: %author%/%postname%/
so users feel like they have their own little corner of the blog.