ex-equo added
[brisk.git] / web / briskin5 / Obj / briskin5.phh
index beaeed6..cbc1fa9 100644 (file)
@@ -49,7 +49,7 @@ $mlang_bin5_bin5 = array(
                                                'en' => 'they have <b>lost</b>'),
                          'info_yturn'=> array( 'it' => ' tocca a <b>te</b> giocare.',
                                                'en' => ' it\'s <b>your</b> turn.'),
-                         'info_turn' => array( 'it' => 'tocca a <b>$unam</b> giocare.',
+                         'info_turn' => array( 'it' => 'tocca a <b>%s</b> giocare.',
                                                'en' => 'it\'s the <b>%s</b>\'s turn.'),
                          'info_mult' => array( 'it' => ' La partita vale <b>%s</b>.',
                                                'en' => ' The game worth <b>%s</b>.' ),
@@ -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 = "";