1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-27 12:05:06 +02:00

batch feed editor: fix newer options not working properly

This commit is contained in:
Andrew Dolgov 2011-04-19 08:13:06 +04:00
parent 6338b16fb5
commit dd04ea81ba

View File

@ -715,6 +715,21 @@ function editSelectedFeeds() {
query = query + "&include_in_digest=false";
}
if (!query.match("&always_display_enclosures=") &&
this.getChildByName('always_display_enclosures').attr('disabled') == false) {
query = query + "&always_display_enclosures=false";
}
if (!query.match("&mark_unread_on_update=") &&
this.getChildByName('mark_unread_on_update').attr('disabled') == false) {
query = query + "&mark_unread_on_update=false";
}
if (!query.match("&update_on_checksum_change=") &&
this.getChildByName('update_on_checksum_change').attr('disabled') == false) {
query = query + "&update_on_checksum_change=false";
}
console.log(query);
notify_progress("Saving data...", true);