]> git.mxchange.org Git - friendica-addons.git/commitdiff
Removed the test file
authorMichael Vogel <icarus@dabo.de>
Sun, 11 Mar 2012 18:43:37 +0000 (19:43 +0100)
committerMichael Vogel <icarus@dabo.de>
Sun, 11 Mar 2012 18:43:37 +0000 (19:43 +0100)
pages/test.php [deleted file]

diff --git a/pages/test.php b/pages/test.php
deleted file mode 100644 (file)
index 4490c4a..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-
-$test[] = array("test"=>"Blubb");
-$test[] = array("test"=>"Blubb");
-
-print_r($test);
-$serial = serialize($test);
-
-print_r(unserialize($serial));
-die();
-
-$url = "https://pirati.ca/profile/test1";
-
-$ch = curl_init();
-
-curl_setopt($ch, CURLOPT_URL, $url);
-curl_setopt($ch, CURLOPT_HEADER, 0);
-curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
-curl_setopt($ch, CURLOPT_TIMEOUT, 2);
-$page = curl_exec($ch);
-curl_close($ch);
-
-if (strpos($page, '<meta name="friendika.community" content="true" />'))
-       echo "Ping";
-
-?>