summaryrefslogtreecommitdiff
path: root/classes/pref/filters.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-15 15:43:07 +0300
committerAndrew Dolgov <[email protected]>2021-02-15 15:43:07 +0300
commit020f062a76746a313fae9c82fbcf9b37fcc9d459 (patch)
tree66e2c2f36ac98e54f5ca81fdd7125402e51181dc /classes/pref/filters.php
parent6b006a18e7efef814fa7a59102c85299acb0a0a4 (diff)
feeds: unify naming
Diffstat (limited to 'classes/pref/filters.php')
-rwxr-xr-xclasses/pref/filters.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/classes/pref/filters.php b/classes/pref/filters.php
index 1c264f642..62bcb8f59 100755
--- a/classes/pref/filters.php
+++ b/classes/pref/filters.php
@@ -189,10 +189,10 @@ class Pref_Filters extends Handler_Protected {
if (strpos($feed_id, "CAT:") === 0) {
$feed_id = (int)substr($feed_id, 4);
- array_push($feeds_fmt, Feeds::getCategoryTitle($feed_id));
+ array_push($feeds_fmt, Feeds::_get_cat_title($feed_id));
} else {
if ($feed_id)
- array_push($feeds_fmt, Feeds::getFeedTitle((int)$feed_id));
+ array_push($feeds_fmt, Feeds::_get_title((int)$feed_id));
else
array_push($feeds_fmt, __("All feeds"));
}
@@ -203,9 +203,9 @@ class Pref_Filters extends Handler_Protected {
} else {
$where = $line["cat_filter"] ?
- Feeds::getCategoryTitle($line["cat_id"]) :
+ Feeds::_get_cat_title($line["cat_id"]) :
($line["feed_id"] ?
- Feeds::getFeedTitle($line["feed_id"]) : __("All feeds"));
+ Feeds::_get_title($line["feed_id"]) : __("All feeds"));
}
# $where = $line["cat_id"] . "/" . $line["feed_id"];
@@ -494,10 +494,10 @@ class Pref_Filters extends Handler_Protected {
if (strpos($feed_id, "CAT:") === 0) {
$feed_id = (int)substr($feed_id, 4);
- array_push($feeds_fmt, Feeds::getCategoryTitle($feed_id));
+ array_push($feeds_fmt, Feeds::_get_cat_title($feed_id));
} else {
if ($feed_id)
- array_push($feeds_fmt, Feeds::getFeedTitle((int)$feed_id));
+ array_push($feeds_fmt, Feeds::_get_title((int)$feed_id));
else
array_push($feeds_fmt, __("All feeds"));
}