another problem with the wikilink-plugin:
I have a german blog with words with umlauts (is this the right english word?)
And I want to make a wikilink with ((Pfarrbüro)) to a static-page "Pfarrbüro". But it does not work, because s9y gives not "Pfarrbüro" to the wiki-plugin but Pfarrb& #252;ro (without the space, but I must make it here, because the forum will transfer it to ü and you will not see any difference)
so in line ~300
Code: Select all
$entry = serendipity_db_query("SELECT id, permalink FROM {$serendipity['dbPrefix']}staticpages WHERE headline = '" . serendipity_db_escape_string($ltitle) . "' ORDER BY timestamp DESC LIMIT 1", true, 'assoc');Code: Select all
SELECT id, permalink FROM kirche_staticpages WHERE
headline = 'Pfarrb& #252;ro' ORDER BY timestamp DESC LIMIT 1Is there a way to fix this, so the wiki-plugin gets normal ü instead of & #252;?