X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fprofile.php;h=aa284d1669a0184a1e6fdf05c84074d76e02ce46;hb=7f143c3159615b4a10539447bcf250a5fca793a5;hp=a284e10f2d6ee69f401e6b47ba5b380b1f921981;hpb=699a4140f9a4bf31d406b684e58ea3b8ef3417c2;p=friendica.git diff --git a/mod/profile.php b/mod/profile.php index a284e10f2d..aa284d1669 100644 --- a/mod/profile.php +++ b/mod/profile.php @@ -52,9 +52,10 @@ function profile_init(App $a) if (ActivityPub::isRequest()) { $user = DBA::selectFirst('user', ['uid'], ['nickname' => $which]); - if ($user['uid'] == 180) { - $data = ActivityPub::profile($user['uid']); + if (DBA::isResult($user)) { + $data = ActivityPub\Transmitter::getProfile($user['uid']); echo json_encode($data); + header('Content-Type: application/activity+json'); exit(); } } @@ -90,7 +91,7 @@ function profile_init(App $a) $a->page['htmlhead'] .= '' . "\r\n"; $a->page['htmlhead'] .= '' . "\r\n"; $a->page['htmlhead'] .= '' . "\r\n"; - $uri = urlencode('acct:' . $a->profile['nickname'] . '@' . $a->get_hostname() . ($a->urlpath ? '/' . $a->urlpath : '')); + $uri = urlencode('acct:' . $a->profile['nickname'] . '@' . $a->getHostName() . ($a->getURLPath() ? '/' . $a->getURLPath() : '')); $a->page['htmlhead'] .= '' . "\r\n"; header('Link: <' . System::baseUrl() . '/xrd/?uri=' . $uri . '>; rel="lrdd"; type="application/xrd+xml"', false); @@ -306,7 +307,7 @@ function profile_content(App $a, $update = 0) $itemspage_network = $a->force_max_items; } - $a->set_pager_itemspage($itemspage_network); + $a->setPagerItemsPage($itemspage_network); $pager_sql = sprintf(" LIMIT %d, %d ", intval($a->pager['start']), intval($a->pager['itemspage']));