summaryrefslogtreecommitdiff
path: root/functions.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-01-18 00:32:48 +0300
committerAndrew Dolgov <[email protected]>2011-01-18 00:32:48 +0300
commit0569a7122c0b5431968473d89320cb8941daa0c1 (patch)
tree1f605c98b42c502097bde3db58c30c280574fdd6 /functions.php
parent08ac193a414a72fab13934fac0303714a5a38d40 (diff)
re-add ForceUpdate to viewfeed for update debugging, add some filter debugging
Diffstat (limited to 'functions.php')
-rw-r--r--functions.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/functions.php b/functions.php
index 4737e60ee..64269aada 100644
--- a/functions.php
+++ b/functions.php
@@ -766,6 +766,10 @@
$filters = load_filters($link, $feed, $owner_uid);
+ if (defined('DAEMON_EXTENDED_DEBUG') || $_REQUEST['xdebug']) {
+ print_r($filters);
+ }
+
if ($use_simplepie) {
$iterator = $rss->get_items();
} else {
@@ -4777,6 +4781,10 @@
catchupArticlesById($link, $ids, $cmode);
}
+ if ($subop == "ForceUpdate" && sprintf("%d", $feed) > 0) {
+ update_rss_feed($link, $feed, true);
+ }
+
if ($subop == "MarkAllRead") {
catchup_feed($link, $feed, $cat_view);