1

Topic: Output in Utf-8 for extern.php and News Generator ?

Is there a way to force the output of extern.php to be in utf-8 even if the board isnt ?
Also can this be done with the news generator plugin ?

Thanks in advance,

Ping

2

Re: Output in Utf-8 for extern.php and News Generator ?

nobody ?

3

Re: Output in Utf-8 for extern.php and News Generator ?

I'll give out 3 gmail invites if someone can get this done ...

4

Re: Output in Utf-8 for extern.php and News Generator ?

5$ via paypal ..

Re: Output in Utf-8 for extern.php and News Generator ?

Look for:

while ($cur_topic = $db->fetch_assoc($result))

And then, after the curly bracket, add:

$cur_topic = array_map(utf8_encode, $cur_topic);

Should be around line 247. This will convert the output for the last active topics into UTF-8. I haven't tested this, but I think it should work.

No need for any paypal transfers or gmail invites smile

"Programming is like sex: one mistake and you have to support it for the rest of your life."