summaryrefslogtreecommitdiff
path: root/viewfeed.js
diff options
context:
space:
mode:
Diffstat (limited to 'viewfeed.js')
-rw-r--r--viewfeed.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/viewfeed.js b/viewfeed.js
index c7194ab1b..a93f886de 100644
--- a/viewfeed.js
+++ b/viewfeed.js
@@ -1159,31 +1159,6 @@ function catchupSelection() {
}
}
-
-function labelFromSearch(search, search_mode, match_on, feed_id, is_cat) {
-
- if (!xmlhttp_ready(xmlhttp_rpc)) {
- printLockingError();
- }
-
- var title = prompt(__("Please enter label title:"), "");
-
- if (title) {
-
- var query = "backend.php?op=labelFromSearch&search=" + param_escape(search) +
- "&smode=" + param_escape(search_mode) + "&match=" + param_escape(match_on) +
- "&feed=" + param_escape(feed_id) + "&is_cat=" + param_escape(is_cat) +
- "&title=" + param_escape(title);
-
- debug("LFS: " + query);
-
- new Ajax.Request(query, {
- onComplete: function(transport) {
- dlg_frefresh_callback(transport);
- } });
- }
-}
-
function editArticleTags(id, feed_id, cdm_enabled) {
_tag_active_post_id = id;
_tag_active_feed_id = feed_id;