From: Matteo Nastasi (mop) Date: Sun, 14 Jan 2007 20:02:01 +0000 (+0000) Subject: raddoppiato numero di tabelle X-Git-Tag: 3.0.0~382 X-Git-Url: https://mop.ddnsfree.com/gitweb/?a=commitdiff_plain;ds=sidebyside;h=f55c2d16a38119d63ee03304ea38e7e647ad1f5a;p=brisk.git raddoppiato numero di tabelle --- diff --git a/web/brisk.phh b/web/brisk.phh index 39fd17e..df0c631 100644 --- a/web/brisk.phh +++ b/web/brisk.phh @@ -20,7 +20,7 @@ */ define( FTOK_PATH, "/var/lib/brisk"); -define(TABLES_N, 4); +define(TABLES_N, 8); define(PLAYERS_N, 3); define(MAX_POINTS, 5); define(MAX_PLAYERS, (PLAYERS_N * TABLES_N)); @@ -822,8 +822,10 @@ function table_content($bri, $user, $table_idx) $content .= sprintf("%s%s%s
",$hilion, xcape($user_cur->name), $hilioff); } + /* for ( ; $i < PLAYERS_N ; $i++) $content .= "
"; + */ $ret .= sprintf('$("table%d").innerHTML = "%s";', $table_idx, $content); @@ -838,7 +840,7 @@ function standup_content(&$bri, $user) if ($user->stat != 'room') return; - $content .= ''; + $content .= '
'; for ($e = 0 , $ct = 0 ; $e < MAX_PLAYERS ; $e++) { if ($bri->user[$e]->sess == "" || $bri->user[$e]->stat != "room" || $bri->user[$e]->name == "") continue; @@ -862,9 +864,9 @@ function standup_content(&$bri, $user) } $content .= '
'; - $content .= '
'; - - $ret .= sprintf('$("standup").innerHTML = "%s";', $content); + $content2 = ''; + $ret .= sprintf('$("standup").innerHTML = "%s"; $("esco").innerHTML = "%s";', + $content, $content2); return ($ret); }