]> git.mxchange.org Git - friendica.git/blobdiff - mod/oexchange.php
Fixed max value check, improved request value fetching
[friendica.git] / mod / oexchange.php
index e3ef01cc4d5193d9341d377f66743fa2c5a44e90..31306a608e9e378c7e4465b7ddb8f98e95fb6269 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -23,11 +23,10 @@ use Friendica\App;
 use Friendica\Core\Renderer;
 use Friendica\DI;
 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()]);
@@ -43,7 +42,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;
        }