]> git.mxchange.org Git - friendica.git/blobdiff - mod/oexchange.php
Test the license check
[friendica.git] / mod / oexchange.php
index 7de4acadfeb3043f63131eac4678fa45b7d7a27a..2060ddd13a917122f6944182541c4e352aae2c7a 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
 
 use Friendica\App;
 use Friendica\Core\Renderer;
+use Friendica\Core\System;
 use Friendica\DI;
+use Friendica\Module\Response;
 use Friendica\Module\Security\Login;
-use Friendica\Util\Strings;
 
 function oexchange_init(App $a) {
 
-       if (($a->argc > 1) && ($a->argv[1] === 'xrd')) {
+       if ((DI::args()->getArgc() > 1) && (DI::args()->getArgv()[1] === 'xrd')) {
                $tpl = Renderer::getMarkupTemplate('oexchange_xrd.tpl');
 
                $o = Renderer::replaceMacros($tpl, ['$base' => DI::baseUrl()]);
-               echo $o;
-               exit();
+               System::httpExit($o, Response::TYPE_XML, 'application/xrd+xml');
        }
 }
 
@@ -43,7 +43,7 @@ function oexchange_content(App $a) {
                return $o;
        }
 
-       if (($a->argc > 1) && $a->argv[1] === 'done') {
+       if ((DI::args()->getArgc() > 1) && DI::args()->getArgv()[1] === 'done') {
                return;
        }