Quote:
Originally Posted by Dragonsys
Let's see if i can remember all the changes 
in {forums}/includes/cron/cron.gwowroster.charinfo.php
Find (1st occurrence):
Code:
$char['charname'] = utf8_decode(urlencode($char['charname']));
Replace with:
Code:
$char['charname'] = utf8_encode($char['charname']);
// $char['charname'] = utf8_decode(urlencode($char['charname']));
Find:
Code:
$char['charname'] = utf8_encode(urldecode($char['charname']));
Replace with:
Code:
// $char['charname'] = utf8_encode(urldecode($char['charname']));
$char['charname'] = utf8_decode($char['charname']);
In {forums}/gwowroster.php
Find:
Code:
$player['charname'] = utf8_encode($player['charname']);
After Add:
Code:
$char_name = utf8_decode(urldecode(substr($player[charurl], 18)));
In Styles -> gWoWRoster -> gwr_roster_bit
Find:
Replace with:
I *think* that is all for the character fix. Let me know if this doesn't work and I will take another look.
Remember to make a backup before you make any changes to files & templates. I will assume no responsibility if something bad happens
|
Not possible.
Code:
$char['charname'] = utf8_decode(urlencode($char['charname']));
is not found, what is found is.
Code:
$char['charname'] = utf8_encode($char['charname']);
and why replace it with a piece of code that is commented out with //?
In no place in the file cron.gwowroster.charinfo.php is the text
found.