Quote:
Originally Posted by bt012ss
You are crazy
One question please.
In germany we have the letters like ?, ?, ?,
When the user use one of these letters in the nickname than i get a popup like this.
Every text which use such a letter will be changed in "null"
Can i fix this anywhere?
Thank you 
|
OK .. will be fixed in the next version (EDIT: Have uploaded new version if you dont fancy the below), however in the meantime these are the changes you need to make. Open up the plugin "MemberMap Main"
FIND:
PHP Code:
"name" => $thisrecord['username']),
"htmlname" => fetch_musername($thisrecord),
REPLACE WITH
PHP Code:
"name" => utf8_encode($thisrecord['username']),
"htmlname" => utf8_encode(fetch_musername($thisrecord)),
FIND
PHP Code:
$dc_htmlusercurrent = fetch_musername($dc_getuser);
$dc_usercurrentID = $vbulletin->userinfo['userid'];
$dc_usercurrent = $vbulletin->userinfo['username'];
REPLACE WITH
PHP Code:
$dc_htmlusercurrent = utf8_encode(fetch_musername($dc_getuser));
$dc_usercurrentID = $vbulletin->userinfo['userid'];
$dc_usercurrent = utf8_encode($vbulletin->userinfo['username']);