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

feeds: unify naming

This commit is contained in:
Andrew Dolgov
2021-02-15 15:43:07 +03:00
parent 6b006a18e7
commit 020f062a76
16 changed files with 134 additions and 134 deletions

View File

@@ -11,7 +11,7 @@ class Af_Comics_Gocomics extends Af_ComicFilter {
public function on_subscribe($url) {
if (preg_match('#^https?://www\.gocomics\.com/([-a-z0-9]+)$#i', $url))
return '<?xml version="1.0" encoding="utf-8"?>'; // Get is_html() to return false.
return '<?xml version="1.0" encoding="utf-8"?>'; // Get _is_html() to return false.
else
return false;
}

View File

@@ -11,7 +11,7 @@ class Af_Comics_Gocomics_FarSide extends Af_ComicFilter {
public function on_subscribe($url) {
if (preg_match("#^https?://www\.thefarside\.com#", $url))
return '<?xml version="1.0" encoding="utf-8"?>'; // Get is_html() to return false.
return '<?xml version="1.0" encoding="utf-8"?>'; // Get _is_html() to return false.
else
return false;
}

View File

@@ -209,7 +209,7 @@ class Af_Psql_Trgm extends Plugin {
print "<li>" .
"<i class='material-icons'>rss_feed</i> <a href='#'
onclick='CommonDialogs.editFeed($f)'>" .
Feeds::getFeedTitle($f) . "</a></li>";
Feeds::_get_title($f) . "</a></li>";
}
print "</ul>";
}

View File

@@ -122,7 +122,7 @@ class Af_Readability extends Plugin {
print "<li><i class='material-icons'>rss_feed</i> <a href='#'
onclick='CommonDialogs.editFeed($f)'>".
Feeds::getFeedTitle($f) . " " . ($is_append ? __("(append)") : "") . "</a></li>";
Feeds::_get_title($f) . " " . ($is_append ? __("(append)") : "") . "</a></li>";
}
print "</ul>";
}

View File

@@ -60,7 +60,7 @@ class VF_Shared extends Plugin {
"override_vfeed" => "ttrss_feeds.title AS feed_title,"
);
$qfh_ret = Feeds::queryFeedHeadlines($params);
$qfh_ret = Feeds::_get_headlines($params);
$qfh_ret[1] = __("Shared articles");
return $qfh_ret;