From 78bcd2c44cef66adbd377943f2a45dd9d289a892 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 15 Feb 2010 15:16:53 +0300 Subject: fix unsubscribeFeed behaving improperly in preferences --- functions.js | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'functions.js') diff --git a/functions.js b/functions.js index 3baaffa3a..ff35961e8 100644 --- a/functions.js +++ b/functions.js @@ -2156,3 +2156,33 @@ function quickAddFilter() { displayDlg('quickAddFilter', '', function () {document.forms['filter_add_form'].reg_exp.focus();}); } + +function unsubscribeFeed(feed_id, title) { + + var msg = __("Unsubscribe from %s?").replace("%s", title); + + if (title == undefined || confirm(msg)) { + notify_progress("Removing feed..."); + + var query = "?op=pref-feeds&quiet=1&subop=remove&ids=" + feed_id; + + new Ajax.Request("backend.php", { + parameters: query, + onComplete: function(transport) { + + closeInfoBox(); + + if (inPreferences()) { + updateFeedList(); + } else { + dlg_frefresh_callback(transport, feed_id); + } + + } }); + } + + return false; +} + + + -- cgit v1.2.3-54-g00ecf