]> git.mxchange.org Git - friendica.git/blobdiff - mod/amcd.php
Move user tombstone activity data to ActivityPub\Transmitter
[friendica.git] / mod / amcd.php
index 5f9f97e3f13507c12e1d0bf2d40043b3185b652f..ca5aa07aae20518cc1d2cd3376233c71bf72a2af 100644 (file)
@@ -1,8 +1,8 @@
 <?php
 
-function amcd_content(App $a) {
-//header("Content-type: text/json");
-echo <<< EOT
+function amcd_content()
+{
+       echo <<< JSON
 {
   "version":1,
   "sessionstatus":{
@@ -44,6 +44,6 @@ echo <<< EOT
     }
   }
 }
-EOT;
-killme();
-}
\ No newline at end of file
+JSON;
+       exit();
+}