
06-06-2008, 12:39 PM
|
|
|
Join Date: Jul 2006
Posts: 62
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by sweede
Not a problem.
However, i've written a lot of hacky code in the current incarnation of this mod and i'm feeling like to really go further with it, i need to re-write it.
in the mean time, open up the functions_wowcharcode.php file, find the line like this,
$this->SetFetchURL( "http://" . $this->locale . ".wowarmory.com/character-sheet.xml?r=" . urlencode($this->realmname) . "&n=" . urlencode($this->charname) );
add the following,
$this->realmname = str_replace("+", " ", $this->realmname);
before it.
|
worked like a charm. =) Thanks!
|