It seems that your patch is different from mine:
Your:
- if ( m_wiki.contains( "charset=utf-8" ) ) {
+ if ( m_wiki.contains( "charset=utf-8", FALSE ) ) {
Mine:
- if ( m_wiki.contains( "charset=utf-8" ) ) {
+ if ( m_wiki.contains( "charset=UTF-8" ) ) {
The encoding string should be in capital letters...
Does it not work for you with the modified patch?
I changed it to use a case-insensitive match, as I don't want to break the
existing lowercase utf-8 detection. If it doesn't work this way please
let me know.
Thanks!
Tim