fix a fatal error when displaying photos

pull/8591/head
Michael 2020-05-06 04:58:25 +00:00
rodzic 652efd1a5d
commit 180b4e51df
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -1307,9 +1307,9 @@ function photos_content(App $a)
}
$tags = null;
$tag_text = Tag::getCSVByURIId($link_item['uri-id']);
if (!empty($link_item['id']) && !empty($tag_text)) {
if (!empty($link_item['id'])) {
$tag_text = Tag::getCSVByURIId($link_item['uri-id']);
$arr = explode(',', $tag_text);
// parse tags and add links
$tag_arr = [];