From 6a2df7ea4ca39fdb10c1a1666af6de58f2f1c0b7 Mon Sep 17 00:00:00 2001 From: christophboecker Date: Sun, 8 Sep 2024 14:22:07 +0200 Subject: [PATCH] Undefined variable: $domain --- lib/Api/Rss.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Api/Rss.php b/lib/Api/Rss.php index 28abc59..af753f6 100644 --- a/lib/Api/Rss.php +++ b/lib/Api/Rss.php @@ -57,7 +57,7 @@ public function execute(): rex_api_result */ public static function getRssFeed(rex_yform_manager_collection $collection, int $domain_id, int $lang, string $description, string $filename): string|bool { - return self::createRssFeed($collection, $domain, $lang, $description, $filename); + return self::createRssFeed($collection, $domain_id, $lang, $description, $filename); } /**