|
#1
|
|||
|
|||
|
Å Ä Ö
I really like Pixelpost, but i have onte question. Why doesn't Å Ä Ö show up in the Image description / text on the blog? I get Ã¥ ä ö instead, my blog is in Swedish so I would like Å Ä Ö...
|
|
#2
|
|||
|
|||
|
Hard to tell since it doesn't show up on this forum either!
|
|
#3
|
|||
|
|||
|
This is a question of special characters, the character-encoding which is set up in the templates and the way the data is entered in the database
this topic is known, I have problems with german umlauts as well, but the next release will take care of it, Punk promised it! :P |
|
#4
|
|||
|
|||
|
ok, I just have to wait then...
Thanks |
|
#5
|
|||
|
|||
|
Hello (Hej..)..
I solved the issue by changing some lines in the function clean(). in admin/index.php I dont know if i've removed som importatn functionallity by doing it this way, but it works fine for me! I changed the function to: Code:
function clean($string) {
$string = htmlspecialchars($string);
//$string = utf8_encode($string);
$string = addslashes($string);
return $string;
}
Code:
$md_empty_element_suffix = " />"; # Change to ">" for HTML output Code:
$md_empty_element_suffix = " >"; # Change to ">" for HTML output //Kim |
|
#6
|
|||
|
|||
|
Oh i forgot, i,ve changed one more line :-)
Code:
$body = utf8_decode(stripslashes($imagerow['body'])); Code:
$body = stripslashes($imagerow['body']); |
| Post Reply |
| Thread Tools | |
|
|