summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRoland Angerer <[email protected]>2014-03-14 08:35:48 +0100
committerRoland Angerer <[email protected]>2014-03-14 08:36:44 +0100
commitf77c72038f9a001e8cf2e37213714a2d350d4810 (patch)
tree63274788bccfdb2c33cf6e427a4efb084835fcf6 /include
parent95beaa147139647fd7844b6dda67a844da80e033 (diff)
deactivated FeedParser re-use as it is not multiuser safe
different users may have different fetch feed and feed fetched hooks
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 1c8de2b2f..4044d1f85 100644
--- a/include/rssfuncs.php
+++ b/include/rssfuncs.php
@@ -183,7 +183,7 @@
while ($tline = db_fetch_assoc($tmp_result)) {
if($debug) _debug(" => " . $tline["last_updated"] . ", " . $tline["id"] . " " . $tline["owner_uid"]);
- $rss = update_rss_feed($tline["id"], true, false, $rss);
+ $rss = update_rss_feed($tline["id"], true, false);
_debug_suppress(false);
++$nf;
}