From ab9a4e292cab48c94e6bac818f3256f6e131c041 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Tue, 10 Dec 2024 14:57:25 +0100 Subject: OPML export/import for cssFullContentConditions (#7082) Follow-up of https://github.com/FreshRSS/FreshRSS/commit/33fd07f6f26310d4806077cc87bcdf9b8b940e35, which should have been a PR. --- app/Models/Entry.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'app/Models/Entry.php') diff --git a/app/Models/Entry.php b/app/Models/Entry.php index adb208276..e742912ad 100644 --- a/app/Models/Entry.php +++ b/app/Models/Entry.php @@ -814,9 +814,9 @@ HTML; if ($url === '' || $feed === null || $feed->pathEntries() === '') { return ''; } - if (!empty($feed->attributeArray('path_entries_condition'))) { + if (!empty($feed->attributeArray('path_entries_conditions'))) { $found = false; - foreach ($feed->attributeArray('path_entries_condition') as $condition) { + foreach ($feed->attributeArray('path_entries_conditions') as $condition) { if (!is_string($condition) || trim($condition) === '') { continue; } -- cgit v1.2.3