]> git.pond.sub.org Git - eow/blobdiff - static/dojo-release-1.1.1/dojox/rpc/tests/resources/jsonpEcho.phps
Replace Dojo with jQuery
[eow] / static / dojo-release-1.1.1 / dojox / rpc / tests / resources / jsonpEcho.phps
diff --git a/static/dojo-release-1.1.1/dojox/rpc/tests/resources/jsonpEcho.phps b/static/dojo-release-1.1.1/dojox/rpc/tests/resources/jsonpEcho.phps
deleted file mode 100644 (file)
index 15d9aaa..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-       $jsonp = false;
-       $result = "";
-
-       if ($_REQUEST["testCallbackParam"]){
-               $jsonp=true;
-               $result .= $_REQUEST['testCallbackParam'] . "('";
-       }
-
-       if (!$_REQUEST["message"]){
-               $result .= "ERROR: message property not found";
-       }
-
-       $result .= $_REQUEST["message"];
-
-       if ($jsonp) {
-               $result .= "');";
-       }
-
-       print $result;
-
-
-?>