]> git.mxchange.org Git - friendica.git/blobdiff - mod/oexchange.php
Test the license check
[friendica.git] / mod / oexchange.php
index 15cef9ce0d14341fac76f54a3d19e88b6435aa18..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
  *
@@ -21,7 +21,9 @@
 
 use Friendica\App;
 use Friendica\Core\Renderer;
+use Friendica\Core\System;
 use Friendica\DI;
+use Friendica\Module\Response;
 use Friendica\Module\Security\Login;
 
 function oexchange_init(App $a) {
@@ -30,8 +32,7 @@ function oexchange_init(App $a) {
                $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');
        }
 }