]> git.mxchange.org Git - friendica.git/commitdiff
Fix for wrong table and wrong field name
authorMichael <heluecht@pirati.ca>
Sun, 3 May 2020 15:44:39 +0000 (15:44 +0000)
committerMichael <heluecht@pirati.ca>
Sun, 3 May 2020 15:44:39 +0000 (15:44 +0000)
src/Model/Post/Category.php

index 680e32e3ad269ac694ebf3ce1c741db491005cb5..d4a8469d4fd6478259ed6cb9a74159d1091c45ca 100644 (file)
@@ -49,12 +49,12 @@ class Category
        {
                $file_text = '';
 
-               $tags = DBA::selectToArray('post-category', ['type', 'name'], ['uri-id' => $uri_id, 'uid' => $uid]);
+               $tags = DBA::selectToArray('category-view', ['type', 'name'], ['uri-id' => $uri_id, 'uid' => $uid]);
                foreach ($tags as $tag) {
                        if ($tag['type'] == self::CATEGORY) {
-                               $file_text .= '<' . $tag['term'] . '>';
+                               $file_text .= '<' . $tag['name'] . '>';
                        } else {
-                               $file_text .= '[' . $tag['term'] . ']';
+                               $file_text .= '[' . $tag['name'] . ']';
                        }
                }