Re: Problems with umlauts
I actually was stumbing across this last night. Maybe your encoding isn’t UTF-8 and it is being force? How about changing the code to get the current sites encoding instead of it being hard coded in that query?
For example:
$content = html_entity_decode($content, ENT_COMPAT, get_option('blog_charset'));
Trent