Skip to content
Snippets Groups Projects
Commit e48beee7 authored by fox's avatar fox Committed by Gogs
Browse files

Merge branch 'bugfix/php8-vsprintf' of wn/tt-rss into master

parents ef7e6793 d2db58de
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment