summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-29 14:32:11 +0400
committerAndrew Dolgov <[email protected]>2013-03-29 14:32:11 +0400
commit32b05702ff2245d8455c49c6b3e86405d496f881 (patch)
treea0d7f8a8fc2817b12b3ca5cbcd57aa0edbfe1f7d /include
parent05e1e0ff20fb2115afa593251e9c5642e3b0f31d (diff)
daemon: do not show feed urls twice
Diffstat (limited to 'include')
-rw-r--r--include/rssfuncs.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rssfuncs.php b/include/rssfuncs.php
index d9a907c18..e82e94b09 100644
--- a/include/rssfuncs.php
+++ b/include/rssfuncs.php
@@ -165,7 +165,7 @@
if (db_num_rows($tmp_result) > 0) {
while ($tline = db_fetch_assoc($tmp_result)) {
- if($debug) _debug(" => " . $tline["feed_url"] . ", " . $tline["last_updated"] . ", " . $tline["id"]);
+ if($debug) _debug(" => " . $tline["last_updated"] . ", " . $tline["id"]);
update_rss_feed($link, $tline["id"], true);
}
}