From 826c51d08e7cbd120db0ac2782ca9a3019fb3747 Mon Sep 17 00:00:00 2001 From: "Matteo Nastasi (mop)" Date: Wed, 22 Jul 2009 19:14:20 +0000 Subject: [PATCH] calculate_points f() return points array --- web/briskin5/Obj/briskin5.phh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/web/briskin5/Obj/briskin5.phh b/web/briskin5/Obj/briskin5.phh index beaeed6..25b9d03 100644 --- a/web/briskin5/Obj/briskin5.phh +++ b/web/briskin5/Obj/briskin5.phh @@ -951,11 +951,12 @@ function locshm_exists($tok) } - +// rendiamo qui l'elenco dei punti come return della func function calculate_points(&$table) { GLOBAL $G_all_points; + $ret = array(); $pro = 0; if ($table->asta_pnt == 60) @@ -1010,10 +1011,13 @@ function calculate_points(&$table) $table->points[$table->points_n % MAX_POINTS][$i] = $pt; $table->total[$i] += $pt; + $ret[$i] = $pt; } $table->points_n++; $table->old_pnt = $pro; $table->mult = 1; + + return($ret); } /* show table @@ -1384,6 +1388,7 @@ function table_wellcome($user) function briscola_show($room, $table, $user) { + GLOBAL $G_lang, $mlang_bin5_bin5; $ptnadd = ""; $ret = ""; -- 2.17.1