Merge pull request #8040 from MrPetovan/bug/notices

Add necessary call to BaseUrl->get() in Module\Objects
This commit is contained in:
Tobias Diekershoff 2019-12-31 19:43:34 +01:00 committed by GitHub
commit d3d63523ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -369,7 +369,9 @@ class Profile
if (!$local_user_is_self && $show_connect) {
if (!$visitor_is_authenticated) {
$follow_link = 'dfrn_request/' . $profile['nickname'];
if (!empty($profile['nickname'])) {
$follow_link = 'dfrn_request/' . $profile['nickname'];
}
} elseif ($profile_is_native) {
if ($visitor_is_following) {
$unfollow_link = $visitor_base_path . '/unfollow?url=' . urlencode($profile_url);

View File

@ -37,7 +37,7 @@ class Objects extends BaseModule
// If no original post could be found, it could possibly be a forum post, there we remove the "origin" field.
// @TODO: Replace with parameter from router
$item = Item::selectFirst(['id', 'author-link'], ['guid' => $a->argv[1], 'private' => false]);
if (!DBA::isResult($item) || !strstr($item['author-link'], DI::baseUrl())) {
if (!DBA::isResult($item) || !strstr($item['author-link'], DI::baseUrl()->get())) {
throw new \Friendica\Network\HTTPException\NotFoundException();
}
}