Problems importing PHPBB3 to Vanilla

I'm using the Vanilla2Export and keep getting this error:
Error: (2) html_entity_decode() [function.html-entity-decode]: charset `utf8' not supported, assuming iso-8859-1
Can anyone help?
Thanks
0
I'm using the Vanilla2Export and keep getting this error:
Error: (2) html_entity_decode() [function.html-entity-decode]: charset `utf8' not supported, assuming iso-8859-1
Can anyone help?
Thanks
Comments
Yeah, we're working on a fix. For now, find this line:
return html_entity_decode($Value, ENT_QUOTES, $CharacterSet);
And change it to:
return html_entity_decode($Value, ENT_QUOTES, 'UTF-8');
For others reading this: Note this requires your database is UTF-8 already, this is just a kludge for @rbclark while we get a new release up.
Thanks @Linc. That did the trick.
Cheers! Hope you enjoy Vanilla.