X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=mod%2Foexchange.php;h=88edc9d60c17e097e16ba2141cfa0d5920476ffa;hb=0b5f7da270bcaa679cb684dbbbbe40781f0b49c6;hp=47547e691ceec4728bc0a4cab06a612e8fd8713d;hpb=b61479ba6eb66a5d23ff997f204319bf934783e0;p=friendica.git diff --git a/mod/oexchange.php b/mod/oexchange.php index 47547e691c..88edc9d60c 100644 --- a/mod/oexchange.php +++ b/mod/oexchange.php @@ -1,17 +1,17 @@ argc > 1) && ($a->argv[1] === 'xrd')) { + 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(); } - - } function oexchange_content(App $a) { @@ -35,10 +35,11 @@ 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)) + if (! strlen($s)) { return; + } require_once('include/html2bbcode.php'); @@ -52,7 +53,4 @@ function oexchange_content(App $a) { $_REQUEST = $post; require_once('mod/item.php'); item_post($a); - } - -