From: Andrew Dolgov Date: Sun, 30 Dec 2012 07:31:34 +0000 (+0400) Subject: properly load user plugins and data on update X-Git-Tag: 1.7.0~83 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=455b1401cdd26ca92a668b767e9205b9e3d9e645;p=tt-rss.git properly load user plugins and data on update --- diff --git a/include/rssfuncs.php b/include/rssfuncs.php index e0119bd3..bd583bbf 100644 --- a/include/rssfuncs.php +++ b/include/rssfuncs.php @@ -269,7 +269,8 @@ $pluginhost = new PluginHost($link); $pluginhost->load(PLUGINS, $pluginhost::KIND_ALL); - $pluginhost->load($plugins, $pluginhost::KIND_USER); + $pluginhost->load($user_plugins, $pluginhost::KIND_USER, $owner_uid); + $pluginhost->load_data(); $pluginhost->run_hooks($pluginhost::HOOK_FEED_PARSED, "hook_feed_parsed", $rss); @@ -538,7 +539,8 @@ _debug("update_rss_feed: applying plugin filters.."); } - $article = array("owner_uid" => $owner_uid, + $article = array("owner_uid" => $owner_uid, // read only + "guid" => $entry_guid, // read only "title" => $entry_title, "content" => $entry_content, "link" => $entry_link, @@ -546,6 +548,7 @@ "author" => $entry_author); foreach ($pluginhost->get_hooks($pluginhost::HOOK_ARTICLE_FILTER) as $plugin) { + $article = $plugin->hook_article_filter($article); }