]> git.mxchange.org Git - friendica.git/blobdiff - mod/oexchange.php
Merge pull request #3991 from MrPetovan/bug/undefined-variables
[friendica.git] / mod / oexchange.php
index 930caac7e459f2e2a19aa92d46d4fe2266780c7d..88edc9d60c17e097e16ba2141cfa0d5920476ffa 100644 (file)
@@ -1,13 +1,14 @@
 <?php
 
 use Friendica\App;
+use Friendica\Core\System;
 
 function oexchange_init(App $a) {
 
        if (($a->argc > 1) && ($a->argv[1] === 'xrd')) {
                $tpl = get_markup_template('oexchange_xrd.tpl');
 
-               $o = replace_macros($tpl, array('$base' => App::get_baseurl()));
+               $o = replace_macros($tpl, array('$base' => System::baseUrl()));
                echo $o;
                killme();
        }
@@ -34,7 +35,7 @@ function oexchange_content(App $a) {
        $tags = (((x($_REQUEST,'tags')) && strlen($_REQUEST['tags']))
                ? '&tags=' . urlencode(notags(trim($_REQUEST['tags']))) : '');
 
-       $s = fetch_url(App::get_baseurl() . '/parse_url?f=&url=' . $url . $title . $description . $tags);
+       $s = fetch_url(System::baseUrl() . '/parse_url?f=&url=' . $url . $title . $description . $tags);
 
        if (! strlen($s)) {
                return;