Browse Source

Missing semicolon

Patrick Falls 12 years ago
parent
commit
f026022ca4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      php/updateraw.php

+ 1 - 1
php/updateraw.php

@@ -33,7 +33,7 @@ while (0 < $query_count--) {
   
   // Store result in array.
   $world = array('id' => $id, 'randomNumber' => $statement->fetchColumn());
-  $world['randomNumber'] = $randomNumber
+  $world['randomNumber'] = $randomNumber;
   $updateStatement->execute();
   
   $arr[] = $world;