summaryrefslogtreecommitdiff
path: root/viewfeed.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-01-18 09:28:42 +0100
committerAndrew Dolgov <[email protected]>2009-01-18 09:28:42 +0100
commitceb30ba49d300d53a0693aba7e1f0e4c523aeedc (patch)
treef914db574e5d19af48c997eaf26dc5ff69de7a64 /viewfeed.js
parentabd9b16507fd517dc56af1be0d11d7043063ddc5 (diff)
new style labels (bump schema)
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;