From a18c35046daee15e7ac5f85db290d54541a03e3c Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Tue, 11 Nov 2025 08:17:12 +0100 Subject: Housekeeping lib_rss.php (#8193) * Housekeeping lib_rss.php `lib_rss.php` had become much too large, especially after https://github.com/FreshRSS/FreshRSS/pull/7924 Moved most functions to other places. Mostly no change of code otherwise (see comments). * Extension: composer run-script phpstan-third-party --- app/Services/ImportService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Services/ImportService.php') diff --git a/app/Services/ImportService.php b/app/Services/ImportService.php index 1ab2b8d69..26d07faae 100644 --- a/app/Services/ImportService.php +++ b/app/Services/ImportService.php @@ -363,7 +363,7 @@ class FreshRSS_Import_Service { $category = new FreshRSS_Category($name); if (isset($category_element['frss:opmlUrl'])) { - $opml_url = checkUrl($category_element['frss:opmlUrl']); + $opml_url = FreshRSS_http_Util::checkUrl($category_element['frss:opmlUrl']); if ($opml_url != '') { $category->_kind(FreshRSS_Category::KIND_DYNAMIC_OPML); $category->_attribute('opml_url', $opml_url); -- cgit v1.2.3