From 33fc7240e6988cd89c83d7d8558a35d0631e06cd Mon Sep 17 00:00:00 2001
From: Steffen K9 <admin@libranet.de>
Date: Sat, 23 May 2020 16:30:55 +0200
Subject: [PATCH] Issue 8680: Fix slim application error

This should fix https://github.com/friendica/friendica/issues/8680
---
 advancedcontentfilter/advancedcontentfilter.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/advancedcontentfilter/advancedcontentfilter.php b/advancedcontentfilter/advancedcontentfilter.php
index 62b18d15..866b0b11 100644
--- a/advancedcontentfilter/advancedcontentfilter.php
+++ b/advancedcontentfilter/advancedcontentfilter.php
@@ -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'];