Issue 8680: Fix slim application error
authorSteffen K9 <admin@libranet.de>
Sat, 23 May 2020 14:30:55 +0000 (16:30 +0200)
committerGitHub <noreply@github.com>
Sat, 23 May 2020 14:30:55 +0000 (16:30 +0200)
This should fix https://github.com/friendica/friendica/issues/8680

advancedcontentfilter/advancedcontentfilter.php

index 62b18d1..866b0b1 100644 (file)
@@ -417,7 +417,7 @@ function advancedcontentfilter_get_variables_guid(ServerRequestInterface $reques
                throw new HTTPException\NotFoundException(DI::l10n()->t('Unknown post with guid: %s', $args['guid']));
        }
 
-       $tags = Tag::populateTagsFromItem($item);
+       $tags = Tag::populateFromItem($item);
 
        $item['tags'] = $tags['tags'];
        $item['hashtags'] = $tags['hashtags'];