Plugins

Problems with german umlauts « Roblog Forums

As I've discoverd the same problem I tried to fix it myself. I only found a workaround by now, but maybe it helps until a real solution shows.The problem is connected with the UTF8 encoding, so you can alter line 108 from$doc->fromString($xmlString);to$doc->fromString(utf8_decode($xmlString));It replaces the UTF-encoded characted with the corresponding HTML-Entity. When you add the book to your library, it only takes the title up to the first special character. So, in my case, I wanted to add "Straßenfeger", it was added as "Stra".