From e626fd249e9e1dbab229eb79850204dc83458880 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Fri, 7 Oct 2022 12:59:31 +0200 Subject: Fix regression 4688 (#4700) Minor regression from https://github.com/FreshRSS/FreshRSS/pull/4688 --- app/Models/Feed.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Models') diff --git a/app/Models/Feed.php b/app/Models/Feed.php index b9a34b90a..a81f1c561 100644 --- a/app/Models/Feed.php +++ b/app/Models/Feed.php @@ -568,7 +568,7 @@ class FreshRSS_Feed extends Minz_Model { } } } - $author_names = substr($authorNames, 0, -2); + $authorNames = substr($authorNames, 0, -2); $entry = new FreshRSS_Entry( $this->id(), -- cgit v1.2.3