summaryrefslogtreecommitdiff
path: root/include/digest.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2017-05-04 15:13:02 +0300
committerAndrew Dolgov <[email protected]>2017-05-04 15:13:02 +0300
commitaeb1abedb2cb5051c2a94e287f114bdbdaa467ff (patch)
treed716174ccb7f20ae383ec9ff93989772bd41cb80 /include/digest.php
parenta230bf88a9ce4589eeaf2d00226eafb78b4de01c (diff)
move a bunch of functions into Feeds/Article namespaces
+ static function catchupArticlesById($ids, $cmode, $owner_uid = false) { + static function getLastArticleId() { + static function queryFeedHeadlines($params) { + static function getParentCategories($cat, $owner_uid) { + static function getChildCategories($cat, $owner_uid) { move the rest of functions2.php back to functions.php as it is of more manageable size, remove the former
Diffstat (limited to 'include/digest.php')
-rw-r--r--include/digest.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/digest.php b/include/digest.php
index ff5d77f10..2c7f81cd9 100644
--- a/include/digest.php
+++ b/include/digest.php
@@ -60,7 +60,7 @@
if ($rc && $do_catchup) {
if ($debug) _debug("Marking affected articles as read...");
- catchupArticlesById($affected_ids, 0, $line["id"]);
+ Article::catchupArticlesById($affected_ids, 0, $line["id"]);
}
} else {
if ($debug) _debug("No headlines");