Topic: Hack for having extern.php output UTF-8
I am using the following php code for outputting the most recent posts in my forum on my wordpress-running frontpage http://www.kukua.dk (bottom, right-most corner):
<?php
$_GET['action'] = 'new';
$_GET['show'] = '3';
include('forum/extern2.php');
?>
As you can see on www.kukua.dk extern.php does not output UTF-8 as the rest of the page, so non-standard and foreign characters do not show up right.
I was wondering if someone could help me change extern.php for version 1.2.x to output UTF-8?
I have looked at http://dev.punbb.org/browser/branches/p … hp?rev=890 but have very little knowledge of PHP so was not able to apply the changes there to the 1.2.x version of extern.php that I am running.
Any help is much appreciated.