X-Git-Url: https://reisub.nsupdate.info/git/?a=blobdiff_plain;f=mod%2Foexchange.php;h=4f2d7e0eb8449e97a0c48f8e1332367b05f46d97;hb=e67133ef5653448003ceac29147cda41a4c9e017;hp=47547e691ceec4728bc0a4cab06a612e8fd8713d;hpb=63e2695d226d195c6a97e1045d6b174591dd2487;p=friendica.git%2F.git diff --git a/mod/oexchange.php b/mod/oexchange.php index 47547e691c..4f2d7e0eb8 100644 --- a/mod/oexchange.php +++ b/mod/oexchange.php @@ -1,17 +1,13 @@ 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())); echo $o; killme(); } - - } function oexchange_content(App $a) { @@ -37,8 +33,9 @@ function oexchange_content(App $a) { $s = fetch_url(App::get_baseurl() . '/parse_url?f=&url=' . $url . $title . $description . $tags); - if(! strlen($s)) + if (! strlen($s)) { return; + } require_once('include/html2bbcode.php'); @@ -52,7 +49,4 @@ function oexchange_content(App $a) { $_REQUEST = $post; require_once('mod/item.php'); item_post($a); - } - -