From d2db58de4ffa0e84d5ddd4dfe6f6d41851188c2b Mon Sep 17 00:00:00 2001 From: wn_ Date: Wed, 16 Dec 2020 07:55:32 -0600 Subject: [PATCH] Switch from 'vsprintf' to 'sprintf' in another place. --- classes/pref/feeds.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/pref/feeds.php b/classes/pref/feeds.php index fb9925956..a3031f2c0 100755 --- a/classes/pref/feeds.php +++ b/classes/pref/feeds.php @@ -74,7 +74,7 @@ class Pref_Feeds extends Handler_Protected { $cat['items'] = $this->get_category_items($line['id']); $num_children = $this->calculate_children_count($cat); - $cat['param'] = vsprintf(_ngettext('(%d feed)', '(%d feeds)', (int) $num_children), $num_children); + $cat['param'] = sprintf(_ngettext('(%d feed)', '(%d feeds)', (int) $num_children), $num_children); if ($num_children > 0 || $show_empty_cats) array_push($items, $cat);