From: Lo?c C. <lo...@us...> - 2001-04-04 08:36:10
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat In directory usw-pr-cvs1:/tmp/cvs-serv11060/chat Modified Files: users.php3 exit.php3 Log Message: Fix some reloading bugs and improve the work for abnormal termination of a chat session Index: users.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/users.php3,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** users.php3 2001/04/03 20:17:40 1.1 --- users.php3 2001/04/04 08:36:06 1.2 *************** *** 290,294 **** $joinUrl = $dbSessionVars['from'] . '?' . dbSessionSID('GET') ! . $pmcQueryArgSeparator . 'exitMode=2' . $pmcQueryArgSeparator . 'newTargetRoom=1%NEWROOM%'; --- 290,294 ---- $joinUrl = $dbSessionVars['from'] . '?' . dbSessionSID('GET') ! . $pmcQueryArgSeparator . 'exitMessage=1' . $pmcQueryArgSeparator . 'newTargetRoom=1%NEWROOM%'; *************** *** 362,366 **** $joinUrl = $dbSessionVars['from'] . '?' . dbSessionSID('GET') ! . $pmcQueryArgSeparator . 'exitMode=2' . $pmcQueryArgSeparator . 'newTargetRoom=1%NEWROOM%'; --- 362,366 ---- $joinUrl = $dbSessionVars['from'] . '?' . dbSessionSID('GET') ! . $pmcQueryArgSeparator . 'exitMessage=1' . $pmcQueryArgSeparator . 'newTargetRoom=1%NEWROOM%'; Index: exit.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/exit.php3,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** exit.php3 2001/04/03 20:10:15 1.1 --- exit.php3 2001/04/04 08:36:06 1.2 *************** *** 94,98 **** $exitUrl = $dbSessionVars['from'] . '?' . dbSessionSID('GET') ! . $pmcQueryArgSeparator . 'exitMode=2'; ?> <a href="<?php echo($exitUrl); ?>" target="_parent"><?php echo(L_EXIT); ?></a> --- 94,98 ---- $exitUrl = $dbSessionVars['from'] . '?' . dbSessionSID('GET') ! . $pmcQueryArgSeparator . 'exitMessage=1'; ?> <a href="<?php echo($exitUrl); ?>" target="_parent"><?php echo(L_EXIT); ?></a> |