mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 19:05:55 +00:00
reinstate wrongfully renamed archived feed; properly fix prefs filtertree labels for all feeds (ff5cc7d7)
This commit is contained in:
@@ -164,7 +164,9 @@ class Pref_Filters extends Handler_Protected {
|
||||
while ($line = $this->dbh->fetch_assoc($result)) {
|
||||
|
||||
$where = sql_bool_to_bool($line["cat_filter"]) ?
|
||||
getCategoryTitle($line["cat_id"]) : getFeedTitle($line["feed_id"]);
|
||||
getCategoryTitle($line["cat_id"]) :
|
||||
($line["feed_id"] ?
|
||||
getFeedTitle($line["feed_id"]) : __("All feeds"));
|
||||
|
||||
# $where = $line["cat_id"] . "/" . $line["feed_id"];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user