1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 19:15:56 +00:00

add HOOK_UNSUBSCRIBE_FEED

This commit is contained in:
dim0x69
2017-11-27 11:46:46 +01:00
parent d7effa92a4
commit 5395526444
2 changed files with 6 additions and 1 deletions

View File

@@ -1740,6 +1740,10 @@ class Pref_Feeds extends Handler_Protected {
static function remove_feed($id, $owner_uid) {
foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_UNSUBSCRIBE_FEED) as $p) {
$line = $p->hook_unsubscribe_feed($id, $owner_uid);
}
if ($id > 0) {
/* save starred articles in Archived feed */
@@ -1969,4 +1973,4 @@ class Pref_Feeds extends Handler_Protected {
return $url_path;
}
}
}