]> git.mxchange.org Git - friendica.git/blobdiff - mod/fetch.php
Fix formatting and PHP Notice in frio theme
[friendica.git] / mod / fetch.php
index 085ded3571b35f7121424ac2fd9c62cf710e055e..c097ee4c46f02418e1a3be5409d7b6df911dc73e 100644 (file)
@@ -6,9 +6,7 @@ This file is part of the Diaspora protocol. It is used for fetching single publi
 use Friendica\App;
 use Friendica\Core\System;
 use Friendica\Protocol\Diaspora;
-use Friendica\Util\Xml;
-
-require_once "include/crypto.php";
+use Friendica\Util\XML;
 
 function fetch_init(App $a)
 {
@@ -68,12 +66,12 @@ function fetch_init(App $a)
        }
        $user = $r[0];
 
-       $status = Diaspora::build_status($item[0], $user);
-       $xml = Diaspora::build_post_xml($status["type"], $status["message"]);
+       $status = Diaspora::buildStatus($item[0], $user);
+       $xml = Diaspora::buildPostXml($status["type"], $status["message"]);
 
        // Send the envelope
        header("Content-Type: application/magic-envelope+xml; charset=utf-8");
-       echo Diaspora::build_magic_envelope($xml, $user);
+       echo Diaspora::buildMagicEnvelope($xml, $user);
 
        killme();
 }