cast to int for incoming table_idx values 3.6.2
authorMatteo Nastasi (mop) <nastasi@alternativeoutput.com>
Sun, 4 Dec 2011 09:17:39 +0000 (10:17 +0100)
committerMatteo Nastasi (mop) <nastasi@alternativeoutput.com>
Sun, 4 Dec 2011 09:17:39 +0000 (10:17 +0100)
web/briskin5/index_wr.php
web/index_wr.php

index e755965..f358440 100644 (file)
@@ -47,6 +47,7 @@ log_load("bin5/index_wr.php");
  */
 log_wr('COMM: '.$mesg);
 
+$table_idx = (int)$table_idx;
 if ($table_idx < 0 || $table_idx >= TABLE_N)
      exit;
 
index 5141092..43be553 100644 (file)
@@ -503,7 +503,7 @@ else if ($user->stat == 'room') {
       }
 
       // Take parameters
-      $table_idx = $argz[1];
+      $table_idx = (int)$argz[1];
       $table = &$room->table[$table_idx];
     
       if ($G_shutdown || $table->wakeup_time > $curtime ||