1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 14:35:55 +00:00

Pref_Feeds:calculate_children_count - fix operator precedence

This commit is contained in:
Andrew Dolgov
2021-08-23 10:45:34 +03:00
parent 0808123179
commit 5c60254474

View File

@@ -228,7 +228,7 @@ class Pref_Feeds extends Handler_Protected {
if ($num_children > 0 || $show_empty_cats)
array_push($root['items'], $cat);
$root['param'] += count($cat['items']);
//$root['param'] += count($cat['items']);
}
/* Uncategorized is a special case */
@@ -1267,7 +1267,7 @@ class Pref_Feeds extends Handler_Protected {
$c = 0;
foreach ($cat['items'] ?? [] as $child) {
if ($child['type'] ?? '' == 'category') {
if (($child['type'] ?? '') == 'category') {
$c += $this->calculate_children_count($child);
} else {
$c += 1;