aboutsummaryrefslogtreecommitdiffstats
path: root/test/data
diff options
context:
space:
mode:
authorTimmy Willison <timmywillisn@gmail.com>2013-08-19 18:27:30 -0400
committerTimmy Willison <timmywillisn@gmail.com>2013-08-19 18:27:30 -0400
commit62da89b89abec219a769d71f0b152c83acd21123 (patch)
treef45b4c32386a5c6dceda314b0d10a2d29c4a0f67 /test/data
parentf6e86c3ca4d527d5453a0b5b9591ef38b5d3c000 (diff)
downloadjquery-62da89b89abec219a769d71f0b152c83acd21123.tar.gz
jquery-62da89b89abec219a769d71f0b152c83acd21123.zip
Revert "Close php tags for ajax tests on swarm"
This reverts commit f6e86c3ca4d527d5453a0b5b9591ef38b5d3c000.
Diffstat (limited to 'test/data')
-rw-r--r--test/data/errorWithJSON.php4
-rw-r--r--test/data/errorWithText.php4
-rw-r--r--test/data/headers.php2
3 files changed, 2 insertions, 8 deletions
diff --git a/test/data/errorWithJSON.php b/test/data/errorWithJSON.php
index a39eb7e9f..62b187ecc 100644
--- a/test/data/errorWithJSON.php
+++ b/test/data/errorWithJSON.php
@@ -3,6 +3,4 @@
header("HTTP/1.0 400 Bad Request");
header("Content-Type: application/json");
-echo '{ "code": 40, "message": "Bad Request" }';
-
-?> \ No newline at end of file
+echo '{ "code": 40, "message": "Bad Request" }'; \ No newline at end of file
diff --git a/test/data/errorWithText.php b/test/data/errorWithText.php
index 7f1f1a82e..abd873217 100644
--- a/test/data/errorWithText.php
+++ b/test/data/errorWithText.php
@@ -2,6 +2,4 @@
header("HTTP/1.0 400 Bad Request");
-echo "plain text message";
-
-?> \ No newline at end of file
+echo "plain text message"; \ No newline at end of file
diff --git a/test/data/headers.php b/test/data/headers.php
index 64d818194..968f13f19 100644
--- a/test/data/headers.php
+++ b/test/data/headers.php
@@ -16,5 +16,3 @@ foreach( $_SERVER as $key => $value ) {
foreach( explode( "_" , $_GET[ "keys" ] ) as $key ) {
echo "$key: " . @$headers[ strtoupper( $key ) ] . "\n";
}
-
-?> \ No newline at end of file