summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--classes/pluginhost.php1
-rw-r--r--classes/pref/feeds.php3
2 files changed, 4 insertions, 0 deletions
diff --git a/classes/pluginhost.php b/classes/pluginhost.php
index c70d23274..302fdbaeb 100644
--- a/classes/pluginhost.php
+++ b/classes/pluginhost.php
@@ -35,6 +35,7 @@ class PluginHost {
const HOOK_HOTKEY_INFO = 18;
const HOOK_ARTICLE_LEFT_BUTTON = 19;
const HOOK_PREFS_EDIT_FEED = 20;
+ const HOOK_PREFS_SAVE_FEED = 21;
const KIND_ALL = 1;
const KIND_SYSTEM = 2;
diff --git a/classes/pref/feeds.php b/classes/pref/feeds.php
index 6fd2ae42d..ddfa56d01 100644
--- a/classes/pref/feeds.php
+++ b/classes/pref/feeds.php
@@ -1002,6 +1002,9 @@ class Pref_Feeds extends Handler_Protected {
mark_unread_on_update = $mark_unread_on_update
WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
+ PluginHost::getInstance()->run_hooks(PluginHost::HOOK_PREFS_SAVE_FEED,
+ "hook_prefs_save_feed", $feed_id);
+
} else {
$feed_data = array();