summaryrefslogtreecommitdiff
path: root/classes/pref/feeds.php
diff options
context:
space:
mode:
Diffstat (limited to 'classes/pref/feeds.php')
-rw-r--r--[-rwxr-xr-x]classes/pref/feeds.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/classes/pref/feeds.php b/classes/pref/feeds.php
index 0b5a445f3..846e814ee 100755..100644
--- a/classes/pref/feeds.php
+++ b/classes/pref/feeds.php
@@ -1554,6 +1554,14 @@ class Pref_Feeds extends Handler_Protected {
}
static function remove_feed($id, $owner_uid) {
+ $debug = isset($_REQUEST["debug"]);
+
+ foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_UNSUBSCRIBE_FEED) as $p) {
+ if( ! $p->hook_unsubscribe_feed($id, $owner_uid)){
+ if($debug) _debug("Feed not removed due to Error in Plugin. (HOOK_UNSUBSCRIBE_FEED)");
+ return;
+ }
+ }
$pdo = Db::pdo();
@@ -1780,4 +1788,4 @@ class Pref_Feeds extends Handler_Protected {
return $url_path;
}
-} \ No newline at end of file
+}