From: Michael Date: Tue, 28 Apr 2020 03:52:07 +0000 (+0000) Subject: Fix wrong field name X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=ce20081d28f56c2fdd9d1f6bf2fae11c61cb082f;p=friendica.git Fix wrong field name --- diff --git a/src/Protocol/Diaspora.php b/src/Protocol/Diaspora.php index 0cefb8def6..7e76662d71 100644 --- a/src/Protocol/Diaspora.php +++ b/src/Protocol/Diaspora.php @@ -124,7 +124,7 @@ class Diaspora } // All tags of the current post - $tags = DBA::select('tag-view', ['term'], ['uri-id' => $parent['uri-id'], 'type' => Tag::HASHTAG]); + $tags = DBA::select('tag-view', ['name'], ['uri-id' => $parent['uri-id'], 'type' => Tag::HASHTAG]); $taglist = []; while ($tag = DBA::fetch($tags)) { $taglist[] = $tag['name'];