fix rendering of category filters on Uncategorized
This commit is contained in:
parent
9669bb94de
commit
73d14338ab
|
@ -203,7 +203,7 @@ class Pref_Filters extends Handler_Protected {
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
$where = $line["cat_filter"] ?
|
$where = $line["cat_filter"] ?
|
||||||
Feeds::_get_cat_title($line["cat_id"]) :
|
Feeds::_get_cat_title($line["cat_id"] ?? 0) :
|
||||||
($line["feed_id"] ?
|
($line["feed_id"] ?
|
||||||
Feeds::_get_title($line["feed_id"]) : __("All feeds"));
|
Feeds::_get_title($line["feed_id"]) : __("All feeds"));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue