diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2011-09-26 11:42:48 +0200 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2011-09-26 11:42:48 +0200 |
commit | 5792b3d3580b9f09460305858293398d8d8a9abf (patch) | |
tree | 90d60e9db4ed733a60c2890c7305d45ddd48be42 /addon/js_upload/file-uploader/tests/action-handler-test.php | |
parent | 991656a3ef396d9a6bd43ddb752627c2880b17ba (diff) | |
parent | 428e6766411d2c6708ad25f726c4bcf1d64af1cc (diff) | |
download | volse-hubzilla-5792b3d3580b9f09460305858293398d8d8a9abf.tar.gz volse-hubzilla-5792b3d3580b9f09460305858293398d8d8a9abf.tar.bz2 volse-hubzilla-5792b3d3580b9f09460305858293398d8d8a9abf.zip |
Merge branch 'master' into newui
Diffstat (limited to 'addon/js_upload/file-uploader/tests/action-handler-test.php')
-rw-r--r-- | addon/js_upload/file-uploader/tests/action-handler-test.php | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/addon/js_upload/file-uploader/tests/action-handler-test.php b/addon/js_upload/file-uploader/tests/action-handler-test.php deleted file mode 100644 index 24466b122..000000000 --- a/addon/js_upload/file-uploader/tests/action-handler-test.php +++ /dev/null @@ -1,31 +0,0 @@ -<?php - -usleep(300); - -$fileName; - -if (isset($_GET['qqfile'])){ - $fileName = $_GET['qqfile']; - - // xhr request - $headers = apache_request_headers(); - if ((int)$headers['Content-Length'] == 0){ - die ('{error: "content length is zero"}'); - } -} elseif (isset($_FILES['qqfile'])){ - $fileName = basename($_FILES['qqfile']['name']); - - // form request - if ($_FILES['qqfile']['size'] == 0){ - die ('{error: "file size is zero"}'); - } -} else { - die ('{error: "file not passed"}'); -} - -if (count($_GET)){ - //return query params - echo json_encode(array_merge($_GET, array('fileName'=>$fileName))); -} else { - die ('{error: "query params not passed"}'); -} |