Fix wrong field name
This commit is contained in:
parent
f5886db3e2
commit
ce20081d28
|
@ -124,7 +124,7 @@ class Diaspora
|
||||||
}
|
}
|
||||||
|
|
||||||
// All tags of the current post
|
// 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 = [];
|
$taglist = [];
|
||||||
while ($tag = DBA::fetch($tags)) {
|
while ($tag = DBA::fetch($tags)) {
|
||||||
$taglist[] = $tag['name'];
|
$taglist[] = $tag['name'];
|
||||||
|
|
Loading…
Reference in a new issue