Changes in directory nightlytest-serverside:

NightlyTestAccept.php updated: 1.52 -> 1.53
---
Log message:

We don't need no stinking backslashes

---
Diffs of the changes:  (+4 -4)

 NightlyTestAccept.php |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)


Index: nightlytest-serverside/NightlyTestAccept.php
diff -u nightlytest-serverside/NightlyTestAccept.php:1.52 
nightlytest-serverside/NightlyTestAccept.php:1.53
--- nightlytest-serverside/NightlyTestAccept.php:1.52   Tue Sep 19 14:12:33 2006
+++ nightlytest-serverside/NightlyTestAccept.php        Tue Sep 19 14:17:47 2006
@@ -971,16 +971,16 @@
 $sentdata="";
 foreach ($_GET as $key => $value) {
   if(strpos($value, "\n") == 0) {
-         $sentdata .= "\'$key\'  =>  \"$value\",\n";
+         $sentdata .= "'$key'  =>  \"$value\",\n";
        } else {
-         $sentdata .= "\'$key\'  =>  <<EOD\n$value\nEOD\n,\n";
+         $sentdata .= "'$key'  =>  <<EOD\n$value\nEOD\n,\n";
        }
 }
 foreach ($_POST as $key => $value) {
   if(strpos($value, "\n") == 0) {
-         $sentdata .= "\'$key\'  =>  \"$value\",\n";
+         $sentdata .= "'$key'  =>  \"$value\",\n";
        } else {
-         $sentdata .= "\'$key\'  =>  <<EOD\n$value\nEOD\n,\n";
+         $sentdata .= "'$key'  =>  <<EOD\n$value\nEOD\n,\n";
        }
 }
 WriteFile("$db_date-senddata.txt", $sentdata);



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

Reply via email to