X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=blobdiff_plain;f=web%2Fbrisk.phh;h=9db417c7154f9607d55303dce416c95f2d9a7bdf;hb=ee868390334d5d48f41b6b572867819b4f18a9e0;hp=899bc89822ca035769cbc5dd436b6e155fd2a7cc;hpb=76c741c96af4d4afa5096acd60bf2069c638fd7b;p=brisk.git diff --git a/web/brisk.phh b/web/brisk.phh index 899bc89..9db417c 100644 --- a/web/brisk.phh +++ b/web/brisk.phh @@ -42,6 +42,15 @@ $root_wellarr = Array ( 'GOOGLE', $root_wellarr = Array ( ); $table_wellarr = Array ( ); +$G_brisk_version = "0.4.2"; + +/*$G_room_help = ' +Brisk - Ver. '.$G_brisk_version.'

+Copyright 2006 Matteo Nastasi

'; +*/ +$G_room_help = 'Brisk - Ver. '.$G_brisk_version.'

Copyright 2006 Matteo Nastasi

'; + + function xcape($s) { $from = array ( '\\', '@', '|' ); @@ -516,7 +525,7 @@ class brisco { if (strncmp($user_mesg, "/nick ", 6) == 0) { log_main($user->sess, "chatt_send BEGIN"); - $name_new = substr(trim(substr($user_mesg, 6)),0,12); + $name_new = str_replace(' ', '_', substr(trim(substr($user_mesg, 6)),0,12)); $user_mesg = "COMMAND ".$user_mesg; // Search dup name // change @@ -916,7 +925,14 @@ function standup_content(&$bri, $user) if ($user->stat != 'room') return; - $content .= ''; + for ($e = 0 , $ct = 0 ; $ct < 4 && $e < MAX_PLAYERS ; $e++) { + if ($bri->user[$e]->sess == "" || $bri->user[$e]->stat != "room" || $bri->user[$e]->name == "") + continue; + $ct++; + } + + $content .= sprintf('
', $ct); + for ($e = 0 , $ct = 0 ; $e < MAX_PLAYERS ; $e++) { if ($bri->user[$e]->sess == "" || $bri->user[$e]->stat != "room" || $bri->user[$e]->name == "") continue; @@ -931,7 +947,7 @@ function standup_content(&$bri, $user) else { $hilion = ""; $hilioff = ""; } - $content .= sprintf('',$hilion, xcape($bri->user[$e]->name), $hilioff); + $content .= sprintf('',$hilion, xcape($bri->user[$e]->name), $hilioff); if (($ct % 4) == 3) { $content .= ''; } @@ -951,10 +967,10 @@ function standup_content(&$bri, $user) -function show_notify($text, $tout, $butt) +function show_notify($anc, $text, $tout, $butt) { log_main("SHOW_NOTIFY", $text); - return sprintf('var noti = new notify(gst,$("bg"),"%s",%d,"%s");', $text, $tout,$butt); + return sprintf('var noti = new notify(gst,$("%s"),"%s",%d,"%s");', $anc, $text, $tout,$butt); } @@ -1087,7 +1103,7 @@ function show_table_info(&$bri, &$table, $table_pos) } $noty .= "

"; - $ret .= show_notify($noty, 3000, "torna alla partita"); + $ret .= show_notify("bg", $noty, 3000, "torna alla partita"); return ($ret); }
%s%s%s%s%s%s