mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-05-18 13:24:37 -04:00
Correct bug: last category was not shown
This commit is contained in:
@@ -281,6 +281,9 @@ class HelperCategory {
|
||||
$line = $listDAO[$i];
|
||||
$cat_id = $line['c_id'];
|
||||
if (($i > 0) && (($cat_id !== $previousLine['c_id']) || ($i === $nbLinesMinus1))) { //End of current category
|
||||
if ($i === $nbLinesMinus1) { //End of table
|
||||
$feedsDao[] = $line;
|
||||
}
|
||||
$cat = new Category (
|
||||
$previousLine['c_name'],
|
||||
$previousLine['c_color'],
|
||||
|
||||
Reference in New Issue
Block a user