Topic: No åäö on addnews and editnews anymore?
UPDATE:
It seems to be problem with whole cutenewsfolder with åäö. Instead of åäö, it shows a "�"...
Then on top of my first post this shows: 
I've read some about it, and seems to be the functions.inc.php file that makes the .
I know when looked around in the files i save the file in wrong Encoding... It showed a warning but i just clicked yes, after that there was this problem. Only problem is, when I'm saving functions.inc.php in others Encoding it makes other problems with åäö...
When I saw the problem for the first time, i looked into the functions.inc.php file and found this:
'�' => '”',
'�' => '“',
'�' => 'œ',
'�' => '™',
'�' => '’',
'�' => '‘',
'�' => '‰',
'�' => '…',
'�' => '€',
'�' => '¡',
'�' => '¢',
'�' => '£',
'�' => '¤',
'�' => '¥',
'�' => '¦',
'�' => '§',
'�' => '¨',
'�' => '©',
'�' => 'ª',
'�' => '«',
'�' => '¬',
'�' => '',
'�' => '®',
'�' => '¯',
'�' => '°',
'�' => '±',
'�' => '²',
'�' => '³',
'�' => '´',
'�' => '·',
'�' => '¸',
'�' => '¹',
'�' => 'º',
'�' => '»',
'�' => '¼',
'�' => '½',
'�' => '¾',
'�' => '¿',
Then I googled around and found and replaced it with this:
'â€' => '”',
'“' => '“',
'Å“' => 'œ',
'â„¢' => '™',
'’' => '’',
'‘' => '‘',
'‰' => '‰',
'…' => '…',
'€' => '€',
'¡' => '¡',
'¢' => '¢',
'£' => '£',
'¤' => '¤',
'Â¥' => '¥',
'¦' => '¦',
'§' => '§',
'¨' => '¨',
'©' => '©',
'ª' => 'ª',
'«' => '«',
'¬' => '¬',
'Â' => '',
'®' => '®',
'¯' => '¯',
'°' => '°',
'±' => '±',
'²' => '²',
'³' => '³',
'´' => '´',
'µ' => 'µ',
'¶' => '¶',
'·' => '·',
'¸' => '¸',
'¹' => '¹',
'º' => 'º',
'¼' => '¼',
'½' => '½',
'¾' => '¾',
'¿' => '¿',
'À' => 'À',
'Ã' => 'Á',
'Â' => 'Â',
'Ã' => 'Ã',
'Ä' => 'Ä',
'Ã…' => 'Å',
'Æ' => 'Æ',
'Ç' => 'Ç',
'È' => 'È',
'É' => 'É',
'Ê' => 'Ê',
'Ë' => 'Ë',
'ÃŒ' => 'Ì',
'Ã' => 'Í',
'ÃŽ' => 'Î',
'Ã' => 'Ï',
'Ã' => 'Ð',
'Ñ' => 'Ñ',
'Ã’' => 'Ò',
'Ó' => 'Ó',
'Ô' => 'Ô',
'Õ' => 'Õ',
'Ö' => 'Ö',
'×' => '×',
'Ø' => 'Ø',
'Ù' => 'Ù',
'Ú' => 'Ú',
'Û' => 'Û',
'Ãœ' => 'Ü',
'Ã' => 'Ý',
'Þ' => 'Þ',
'ß' => 'ß',
'Ã ' => 'à',
'á' => 'á',
'â' => 'â',
'ã' => 'ã',
'ä' => 'ä',
'Ã¥' => 'å',
'æ' => 'æ',
'ç' => 'ç',
'è' => 'è',
'é' => 'é',
'ê' => 'ê',
'ë' => 'ë',
'ì' => 'ì',
'Ã' => 'í',
'î' => 'î',
'ï' => 'ï',
'ð' => 'ð',
'ñ' => 'ñ',
'ò' => 'ò',
'ó' => 'ó',
'ô' => 'ô',
'õ' => 'õ',
'ö' => 'ö',
'÷' => '÷',
'ø' => 'ø',
'ù' => 'ù',
'ú' => 'ú',
'û' => 'û',
'ü' => 'ü',
'ý' => 'ý',
'þ' => 'þ',
'ÿ' => 'ÿ',
Which makes it works for now (not the javascript title, or åäö in admin-section)
If I paste '�' => '”', code agian, it makes it all look wierd agian.
Originaltext
Hi! I was playing around in the addnews and editnews files and maybe some more. Anyway... Now, I don't have åäö in the titles anymore in addnews and editnews. Åäö is shown when the news get posted.
Check here:
http://www.nhlkollen.se
BUT
If you go into an article like this one which contains åäö in the title:
http://nhlkollen.se/index.php?subaction=sh...amp;ucat=3&
you will see that åäö isnt in the browser title anymore. Im using javascript to chance the title.
What can I have made wrong?
Sorry for a maybe confusing post but I'm in a hurry right now.