summaryrefslogtreecommitdiff
path: root/classes/pref/feeds.php
diff options
context:
space:
mode:
authorwn_ <[email protected]>2020-12-16 07:55:32 -0600
committerwn_ <[email protected]>2020-12-16 07:55:32 -0600
commitd2db58de4ffa0e84d5ddd4dfe6f6d41851188c2b (patch)
tree53b65eaf1e00152efe14c6b143d4711014c3fbce /classes/pref/feeds.php
parentef7e67936350fce7b29499d6917d2a577105c779 (diff)
Switch from 'vsprintf' to 'sprintf' in another place.
Diffstat (limited to 'classes/pref/feeds.php')
-rwxr-xr-xclasses/pref/feeds.php2
1 files changed, 1 insertions, 1 deletions
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);