From 2d830c6281c19a7ee29cd379f5aedc82deef3775 Mon Sep 17 00:00:00 2001 From: wn_ Date: Wed, 17 Nov 2021 20:45:26 +0000 Subject: [PATCH] Minor correction to RSSUtils::cache_enclosures() $enclosures param type. All FeedEnclosure values are currently strings, even though the numeric things get converted to int before getting inserted in 'ttrss_enclosures'. --- classes/rssutils.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/rssutils.php b/classes/rssutils.php index baace6b20..b886a060c 100755 --- a/classes/rssutils.php +++ b/classes/rssutils.php @@ -1275,7 +1275,7 @@ class RSSUtils { /** * TODO: move to DiskCache? * - * @param array> $enclosures An array of "enclosure arrays" [string $link, string $type, int $length, string, $title, int $width, int $height] + * @param array> $enclosures An array of "enclosure arrays" [string $link, string $type, string $length, string, $title, string $width, string $height] * @see RSSUtils::update_rss_feed() * @see FeedEnclosure */