The german word for male is Männlich and it is parsed into the db into roster_players -> sex. If i sync with the Armory, every updated male charakter is saved as with the sex "M�nnlich". If I upload my character, the sex is saved in the db as "Männlich".
The first one (from the sync run) gives a wrong output in the character overview. Instead of "Männlich" there is stands "M[]nnlich", but the second one delivers a correct output "Männlich". Somhow the special character parsing seems to make a misstake here. I am no coder so I have no clue why and where this happens.
PS: in the meantime, everyone can run this SQL statement to change the wrong spelling:
- Code: Select all
UPDATE `roster_players` SET `SEX` = 'MännlicH' WHERE `SEX` = 'M�nnlich';