]> git.mxchange.org Git - friendica.git/commitdiff
Issue 11561: Don't mark photo links as invalid
authorMichael <heluecht@pirati.ca>
Sun, 29 May 2022 19:10:00 +0000 (19:10 +0000)
committerMichael <heluecht@pirati.ca>
Sun, 29 May 2022 19:10:00 +0000 (19:10 +0000)
mod/photos.php

index 1374b8543293840f5f8137056ffa0d7d733400a0..88cd8782de6381c3e6486d08fe184985e4f5a012 100644 (file)
@@ -1257,14 +1257,12 @@ function photos_content(App $a)
                $tags = null;
 
                if (!empty($link_item['id'])) {
-                       $tag_text = Tag::getCSVByURIId($link_item['uri-id']);
-                       $arr = explode(',', $tag_text);
                        // parse tags and add links
                        $tag_arr = [];
-                       foreach ($arr as $tag) {
+                       foreach (Tag::getByURIId($link_item['uri-id']) as $tag) {
                                $tag_arr[] = [
-                                       'name' => BBCode::convert($tag),
-                                       'removeurl' => '/tagrm/' . $link_item['id'] . '/' . bin2hex($tag)
+                                       'name' => $tag['name'],
+                                       'removeurl' => '/tagrm/' . $link_item['id'] . '/' . bin2hex($tag['name'])
                                ];
                        }
                        $tags = ['title' => DI::l10n()->t('Tags: '), 'tags' => $tag_arr];