1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 12:45:55 +00:00

pass feed information to hook_article_export_feed

This commit is contained in:
Andrew Dolgov
2016-03-01 14:42:15 +03:00
parent 399678a14e
commit 9232283815

View File

@@ -135,7 +135,7 @@ class Handler_Public extends Handler {
}
foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_ARTICLE_EXPORT_FEED) as $p) {
$line = $p->hook_article_export_feed($line);
$line = $p->hook_article_export_feed($line, $feed, $is_cat);
}
$tpl->setVariable('ARTICLE_ID',
@@ -227,7 +227,7 @@ class Handler_Public extends Handler {
}
foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_ARTICLE_EXPORT_FEED) as $p) {
$line = $p->hook_article_export_feed($line);
$line = $p->hook_article_export_feed($line, $feed, $is_cat);
}
$article = array();