[llvm-commits] CVS: nightlytest-serverside/NightlyTestAccept.php
Jim Laskey
jlaskey at apple.com
Thu Sep 14 04:19:36 PDT 2006
Changes in directory nightlytest-serverside:
NightlyTestAccept.php updated: 1.7 -> 1.8
---
Log message:
testing #6
---
Diffs of the changes: (+8 -8)
NightlyTestAccept.php | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
Index: nightlytest-serverside/NightlyTestAccept.php
diff -u nightlytest-serverside/NightlyTestAccept.php:1.7 nightlytest-serverside/NightlyTestAccept.php:1.8
--- nightlytest-serverside/NightlyTestAccept.php:1.7 Thu Sep 14 06:15:29 2006
+++ nightlytest-serverside/NightlyTestAccept.php Thu Sep 14 06:19:22 2006
@@ -13,10 +13,10 @@
* Start response early for debugging purposes
*
*******************************************************************************/
-print "content-type: text/text\r\n\r\n";
+print "content-type: text/text\n\n";
$print_debug = 1;
-$print_env = 0;
+$print_env = 1;
if ($print_debug) {
@@ -25,23 +25,23 @@
if ($print_env) {
foreach ($_ENV as $key => $value) {
- print "_ENV $key => $value<br>\n";
+ print "_ENV $key => $value<br>\n";
}
foreach ($_SERVER as $key => $value) {
- print "_SERVER $key => $value<br>\n";
+ print "_SERVER $key => $value<br>\n";
}
foreach ($_GET as $key => $value) {
- print "_GET $key => $value<br>\n";
+ print "_GET $key => $value<br>\n";
}
foreach ($_POST as $key => $value) {
- print "_POST $key => $value<br>\n";
+ print "_POST $key => $value<br>\n";
}
foreach ($_COOKIE as $key => $value) {
- print "_COOKIE $key => $value<br>\n";
+ print "_COOKIE $key => $value<br>\n";
}
foreach ($_FILES as $key => $value) {
@@ -50,7 +50,7 @@
// Same as _POST
foreach ($_REQUEST as $key => $value) {
- print "_REQUEST $key => $value<br>\n";
+ print "_REQUEST $key => $value<br>\n";
}
}
More information about the llvm-commits
mailing list