mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-15 07:35:56 +00:00
new style labels (bump schema)
This commit is contained in:
25
viewfeed.js
25
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;
|
||||
|
||||
Reference in New Issue
Block a user