aboutsummaryrefslogtreecommitdiffstats
path: root/test/data
diff options
context:
space:
mode:
authorOleg Gaidarenko <markelog@gmail.com>2015-10-12 19:56:46 +0300
committerOleg Gaidarenko <markelog@gmail.com>2015-10-12 22:38:15 +0300
commit239169bb2ede6ea6287d82d1d13b0c354f451749 (patch)
tree01acc8013b0446a96f05076657bfc5e3babcb0ba /test/data
parentcb087ce41daa5db4c8db10e586bdc141f953d93d (diff)
downloadjquery-239169bb2ede6ea6287d82d1d13b0c354f451749.tar.gz
jquery-239169bb2ede6ea6287d82d1d13b0c354f451749.zip
Ajax: improve content-type detection
Fixes gh-2584 Closes gh-2643
Diffstat (limited to 'test/data')
-rw-r--r--test/data/ajax/content-type.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/data/ajax/content-type.php b/test/data/ajax/content-type.php
new file mode 100644
index 000000000..162e3636d
--- /dev/null
+++ b/test/data/ajax/content-type.php
@@ -0,0 +1,5 @@
+<?php
+ $type = $_REQUEST['content-type'];
+ header("Content-type: $type");
+ echo $_REQUEST['response']
+?>