summaryrefslogtreecommitdiff
path: root/classes/handler
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2016-03-01 14:42:15 +0300
committerAndrew Dolgov <[email protected]>2016-03-01 14:42:15 +0300
commit9232283815c72e82d1b2167c03954b687a15fad4 (patch)
tree83075183e66ebffc3a67caa7dbd7df9ab95f675c /classes/handler
parent399678a14e98cefd61f228b11e20fa711ea6d55b (diff)
pass feed information to hook_article_export_feed
Diffstat (limited to 'classes/handler')
-rw-r--r--classes/handler/public.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/handler/public.php b/classes/handler/public.php
index f37d1f67f..46fc90fe1 100644
--- a/classes/handler/public.php
+++ b/classes/handler/public.php
@@ -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();