]> git.mxchange.org Git - friendica.git/blobdiff - mod/oexchange.php
Merge remote-tracking branch 'upstream/develop' into 1706-lock
[friendica.git] / mod / oexchange.php
index 47547e691ceec4728bc0a4cab06a612e8fd8713d..930caac7e459f2e2a19aa92d46d4fe2266780c7d 100644 (file)
@@ -1,17 +1,16 @@
 <?php
 
+use Friendica\App;
 
 function oexchange_init(App $a) {
 
-       if(($a->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 +36,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 +52,4 @@ function oexchange_content(App $a) {
        $_REQUEST = $post;
        require_once('mod/item.php');
        item_post($a);
-
 }
-
-