diff options
| author | Andrew Dolgov <gothfox@users.noreply.github.com> | 2014-05-19 16:36:15 +0400 |
|---|---|---|
| committer | Andrew Dolgov <gothfox@users.noreply.github.com> | 2014-05-19 16:36:15 +0400 |
| commit | ddc9f12e89265b2e379b3ee9ddf601ba645a438e (patch) | |
| tree | 04818e173e3c5b7ebf26aba9c6472550f1170f1a /include/rssfuncs.php | |
| parent | a283bf26438199e415fcebb2ee0b8b72b0db51cf (diff) | |
| parent | 01465325b48270e5eee5db94c6178ba6d567ddf7 (diff) | |
Merge pull request #375 from wltb/hooks
Add subscribe hook, give more information to fetch_feed hook
Diffstat (limited to 'include/rssfuncs.php')
| -rw-r--r-- | include/rssfuncs.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rssfuncs.php b/include/rssfuncs.php index 15f1df0cc..010071e57 100644 --- a/include/rssfuncs.php +++ b/include/rssfuncs.php @@ -268,7 +268,7 @@ $force_refetch = isset($_REQUEST["force_refetch"]); foreach ($pluginhost->get_hooks(PluginHost::HOOK_FETCH_FEED) as $plugin) { - $feed_data = $plugin->hook_fetch_feed($feed_data, $fetch_url, $owner_uid, $feed); + $feed_data = $plugin->hook_fetch_feed($feed_data, $fetch_url, $owner_uid, $feed, $last_article_timestamp, $auth_login, $auth_pass); } // try cache |