]> git.mxchange.org Git - friendica.git/blobdiff - mod/hostxrd.php
Remove unused/empty template variables in register
[friendica.git] / mod / hostxrd.php
index 1da8fda998095d9673f8f81d073561245faf778b..93a9d833c9626426826b4b983789f2f0fae9845b 100644 (file)
@@ -4,6 +4,7 @@
  */
 use Friendica\App;
 use Friendica\Core\Config;
+use Friendica\Core\Renderer;
 use Friendica\Core\System;
 use Friendica\Protocol\Salmon;
 use Friendica\Util\Crypto;
@@ -21,12 +22,12 @@ function hostxrd_init(App $a)
                Config::set('system','site_pubkey', $res['pubkey']);
        }
 
-       $tpl = get_markup_template('xrd_host.tpl');
-       echo replace_macros($tpl, array(
-               '$zhost' => $a->get_hostname(),
+       $tpl = Renderer::getMarkupTemplate('xrd_host.tpl');
+       echo Renderer::replaceMacros($tpl, [
+               '$zhost' => $a->getHostName(),
                '$zroot' => System::baseUrl(),
                '$domain' => System::baseUrl(),
-               '$bigkey' => Salmon::salmonKey(Config::get('system', 'site_pubkey')))
+               '$bigkey' => Salmon::salmonKey(Config::get('system', 'site_pubkey'))]
        );
 
        exit();