diff options
| author | 2022-08-18 12:10:55 +0200 | |
|---|---|---|
| committer | 2022-08-18 12:10:55 +0200 | |
| commit | 1603c10bbab61b4a84380c8a9d5aa77536a4f1c7 (patch) | |
| tree | 36ee76291c8e877d7421641ae7a38570ff65f8ce /app/views/helpers/export/opml.phtml | |
| parent | 4f111c5b305078a641d13ac41ce7d798e3cc19ce (diff) | |
XPath ability to define the UID manually (#4507)
* XPath ability to define the UID manually
* Fix error in i18n
Diffstat (limited to 'app/views/helpers/export/opml.phtml')
| -rw-r--r-- | app/views/helpers/export/opml.phtml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/views/helpers/export/opml.phtml b/app/views/helpers/export/opml.phtml index c401b05bd..677bb03b5 100644 --- a/app/views/helpers/export/opml.phtml +++ b/app/views/helpers/export/opml.phtml @@ -28,6 +28,7 @@ function feedsToOutlines($feeds, $excludeMutedFeeds = false): array { $outline['frss:xPathItemTimestamp'] = ['namespace' => FreshRSS_Export_Service::FRSS_NAMESPACE, 'value' => $xPathSettings['itemTimestamp'] ?? null]; $outline['frss:xPathItemThumbnail'] = ['namespace' => FreshRSS_Export_Service::FRSS_NAMESPACE, 'value' => $xPathSettings['itemThumbnail'] ?? null]; $outline['frss:xPathItemCategories'] = ['namespace' => FreshRSS_Export_Service::FRSS_NAMESPACE, 'value' => $xPathSettings['itemCategories'] ?? null]; + $outline['frss:xPathItemUid'] = ['namespace' => FreshRSS_Export_Service::FRSS_NAMESPACE, 'value' => $xPathSettings['itemUid'] ?? null]; } if (!empty($feed->filtersAction('read'))) { $filters = ''; |
