Changes in directory nightlytest-serverside:

NightlyTestAccept.php updated: 1.65 -> 1.66
---
Log message:

Die if no nickname is set!


---
Diffs of the changes:  (+6 -1)

 NightlyTestAccept.php |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletion(-)


Index: nightlytest-serverside/NightlyTestAccept.php
diff -u nightlytest-serverside/NightlyTestAccept.php:1.65 
nightlytest-serverside/NightlyTestAccept.php:1.66
--- nightlytest-serverside/NightlyTestAccept.php:1.65   Sun Apr 29 16:10:32 2007
+++ nightlytest-serverside/NightlyTestAccept.php        Wed May  2 17:16:17 2007
@@ -466,7 +466,12 @@
  *
  
*******************************************************************************/
 function acceptTest() {
-  
+ 
+  // If no nickname is set, die here
+  if (!isset($_POST['nickname'])) {
+    return;
+  }
+ 
   $database = "nightlytestresults";
   $loginname = "llvm";
   $password = "ll2002vm";



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to