From: Matteo Nastasi (mop) Date: Sat, 13 Jan 2007 05:01:43 +0000 (+0000) Subject: aggiunta gestione di chiusura finestra X-Git-Tag: 3.0.0~388 X-Git-Url: http://mop.ddnsfree.com/gitweb/?a=commitdiff_plain;h=9c5779d8ac2bddb4da83ec1f2ae87b06ac007413;hp=22d17b498e60fd3cfeca8ba04f6ae1522e583d1d;p=brisk.git aggiunta gestione di chiusura finestra --- diff --git a/web/index_wr.php b/web/index_wr.php index 83656ff..0f20a7b 100644 --- a/web/index_wr.php +++ b/web/index_wr.php @@ -44,7 +44,22 @@ if (($user = &get_user($bri, $sess, &$idx)) == FALSE) { } $argz = explode('|', $mesg); -if ($user->stat == 'room') { +if ($argz[0] == 'shutdown') { + log_auth($user_cur->sess, "Shutdown session."); + + $user->sess = ""; + $user->name = ""; + $user->the_end = FALSE; + + log_rd2($user->sess, "AUTO LOGOUT."); + if ($user->subst == 'sitdown' || $user->stat == 'table') + $bri->room_wakeup(&$user); + else if ($user->subst == 'standup') + $bri->room_outstandup(&$user); + else + log_rd2($sess, "SHUTDOWN FROM WHAT ???"); +} +else if ($user->stat == 'room') { if ($argz[0] == 'logout') { $user->comm[$user->step % COMM_N] = "gst.st = ".($user->step+1)."; "; $user->comm[$user->step % COMM_N] .= sprintf('postact_logout();'); @@ -90,7 +105,7 @@ if ($user->stat == 'room') { log_wr($sess, "Pre if!"); $ret = ""; - $ret .= sprintf('gst.st_loc++; gst.st=%d; the_end=true; document.location.assign("table.php");|', $user_cur->step+1); + $ret .= sprintf('gst.st_loc++; gst.st=%d; the_end=true; window.onunload = null ; document.location.assign("table.php");|', $user_cur->step+1); $user_cur->comm[$user_cur->step % COMM_N] = $ret; $user_cur->trans_step = $user_cur->step + 1;