Closed GoogleCodeExporter closed 9 years ago
Might be an issue setting cookies with IE8. i iwll lookinto it
Original comment by wilson.steven10@gmail.com
on 21 Feb 2010 at 3:49
It seem the MangosWeb/Trinityweb Enhanced have alot of issues with IE8. As of
right
now this is a low priority issue. Works fine in firefox 3.5.7 and Opera 10
Original comment by wilson.steven10@gmail.com
on 21 Feb 2010 at 6:22
I try with Firefox 3.5.7, but I get the same problem..
thanks a lot..
Original comment by adm.wowe...@gmail.com
on 21 Feb 2010 at 8:47
Attachments:
Original comment by wilson.steven10@gmail.com
on 21 Feb 2010 at 9:11
Try this and let me know if it works:
Goto index.php and at line 211 you will see the following...
//Load characters list
if (isset($user['id']) && $user['id']>0) {
$characters = $CHDB->select('SELECT guid,name FROM `characters` WHERE
account=?d',
$user['id']);
if (isset($_REQUEST['cur_selected_character'])) {
foreach($characters as $character) {
if ($character['guid']==$_REQUEST['cur_selected_character']) {
$DB->query('UPDATE account_extend SET character_id=?d,character_name=? WHERE
account_id=?d', $character['guid'], $character['name'], $user['id']);
}
Change it to this...
//Load characters list
if (isset($user['id']) && $user['id']>0) {
$characters = $CHDB->select('SELECT guid,name FROM `characters` WHERE
account=?d',
$user['id']);
if (isset($_COOKIE['cur_selected_character'])) {
foreach($characters as $character) {
if ($character['guid']==$_COOKIE['cur_selected_character']) {
$DB->query('UPDATE account_extend SET character_id=?d,character_name=? WHERE
account_id=?d', $character['guid'], $character['name'], $user['id']);
}
Original comment by wilson.steven10@gmail.com
on 22 Feb 2010 at 12:30
Fixed revision 75 and 76
Original comment by wilson.steven10@gmail.com
on 22 Feb 2010 at 2:18
Original issue reported on code.google.com by
adm.wowe...@gmail.com
on 21 Feb 2010 at 2:29Attachments: