Description: ------------ ä is being represented as "ä" in livedocs.
Seems to not be my browser -- curl shows the same.
haven't taken the time to figure out "why", yet.
S
The problem is in your livedocs setup. Your server is sending a 'Content-type' headers with ISO-8859-1 (maybe because of a php.ini option).
A simple fix is to add the following to the .htaccess file:
php_value default_charset "UTF-8"
Nuno