X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Foexchange.php;h=dd3809bc7d795889daa5ea8f2984ce64bb2f937f;hb=a98d3213767392dcce399188f65b5f976caf98e6;hp=173de0a6bc71f770401522588804087d2cc6daf2;hpb=5a236e0af2b815777261ce4e8dd6965deb8bdde6;p=friendica.git diff --git a/mod/oexchange.php b/mod/oexchange.php index 173de0a6bc..dd3809bc7d 100644 --- a/mod/oexchange.php +++ b/mod/oexchange.php @@ -20,6 +20,8 @@ */ use Friendica\App; +use Friendica\Content\Text\BBCode; +use Friendica\Content\Text\HTML; use Friendica\Core\System; use Friendica\DI; use Friendica\Module\Response; @@ -93,9 +95,9 @@ function oexchange_init(App $a) System::httpExit($xml->saveXML(), Response::TYPE_XML, 'application/xrd+xml'); } -function oexchange_content(App $a) { - - if (!local_user()) { +function oexchange_content(App $a) +{ + if (!DI::userSession()->getLocalUserId()) { $o = Login::form(); return $o; } @@ -109,7 +111,7 @@ function oexchange_content(App $a) { $description = !empty($_REQUEST['description']) ? trim($_REQUEST['description']) : ''; $tags = !empty($_REQUEST['tags']) ? trim($_REQUEST['tags']) : ''; - $s = \Friendica\Content\Text\BBCode::embedURL($url, true, $title, $description, $tags); + $s = BBCode::embedURL($url, true, $title, $description, $tags); if (!strlen($s)) { return; @@ -117,11 +119,11 @@ function oexchange_content(App $a) { $post = []; - $post['profile_uid'] = local_user(); + $post['profile_uid'] = DI::userSession()->getLocalUserId(); $post['return'] = '/oexchange/done'; - $post['body'] = Friendica\Content\Text\HTML::toBBCode($s); + $post['body'] = HTML::toBBCode($s); $_REQUEST = $post; - require_once('mod/item.php'); + require_once 'mod/item.php'; item_post($a); }