X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2FForumManager.php;h=17a6b6730b6956c72e8d26aede56e108dc8a4f3f;hb=d034822f079d063cffb607109bf1e0c03a9276e0;hp=fe12b45525ecadff6ffbab495ab70f718ebbd868;hpb=a3c79d2007884b2057db6279be011e2db6b6cdbe;p=friendica.git diff --git a/include/ForumManager.php b/include/ForumManager.php index fe12b45525..17a6b6730b 100644 --- a/include/ForumManager.php +++ b/include/ForumManager.php @@ -2,7 +2,7 @@ /** * @file include/ForumManager.php - * @brief ForumManager class with it's methods related to forum functionality * + * @brief ForumManager class with its methods related to forum functionality * */ /** @@ -95,12 +95,12 @@ class ForumManager { $selected = (($cid == $contact['id']) ? ' forum-selected' : ''); $entry = array( - 'url' => z_root() . '/network?f=&cid=' . $contact['id'], - 'external_url' => z_root() . '/redir/' . $contact['id'], + 'url' => 'network?f=&cid=' . $contact['id'], + 'external_url' => 'redir/' . $contact['id'], 'name' => $contact['name'], 'cid' => $contact['id'], 'selected' => $selected, - 'micro' => proxy_url($contact['micro'], false, PROXY_SIZE_MICRO), + 'micro' => App::remove_baseurl(proxy_url($contact['micro'], false, PROXY_SIZE_MICRO)), 'id' => ++$id, ); $entries[] = $entry;