]> git.mxchange.org Git - friendica.git/blobdiff - mod/amcd.php
Move user tombstone activity data to ActivityPub\Transmitter
[friendica.git] / mod / amcd.php
index a2a1327e6df8b47c5452eb2fe0e1780294b26988..ca5aa07aae20518cc1d2cd3376233c71bf72a2af 100644 (file)
@@ -1,8 +1,8 @@
 <?php
 
-function amcd_content(&$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();
+}