From b7bd18148e65bbdd6be442036a295eb43ca1501e Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Tue, 14 Oct 2025 15:43:43 +0200 Subject: Option to show user labels instead of tags in RSS share (#8112) * Option to show user labels instead of tags in RSS share fix https://github.com/FreshRSS/FreshRSS/discussions/8108#discussioncomment-14668813 image --- app/Models/View.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'app/Models/View.php') diff --git a/app/Models/View.php b/app/Models/View.php index 11ca3a105..104afb3c0 100644 --- a/app/Models/View.php +++ b/app/Models/View.php @@ -78,7 +78,7 @@ class FreshRSS_View extends Minz_View { // Export / Import public string $content; /** @var array> */ - public array $entryIdsTagNames; + public array $entryIdsTagNames = []; public string $list_title; public int $queryId; public string $type; @@ -111,6 +111,7 @@ class FreshRSS_View extends Minz_View { public bool $internal_rendering = false; public string $description = ''; public string $image_url = ''; + public bool $publishLabelsInsteadOfTags = false; // Content preview public string $fatalError; -- cgit v1.2.3