1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-10 16:01:33 +00:00

batch feed editor: add workaround for Form.serialize() ignoring unchecked checkboxes

This commit is contained in:
Andrew Dolgov
2008-09-11 07:45:39 +01:00
parent b0f015a2ea
commit 5d538f4f18
2 changed files with 39 additions and 1 deletions
+31 -1
View File
@@ -2250,11 +2250,41 @@ function feedsEditSave() {
return
}
var ok = confirm(__("Save changes to selected feeds?"));
// var ok = confirm(__("Save changes to selected feeds?"));
var ok = true;
if (ok) {
var f = document.forms["batch_edit_feed_form"];
var query = Form.serialize("batch_edit_feed_form");
/* Form.serialize ignores unchecked checkboxes */
if (!query.match("hidden=") &&
f.hidden.disabled == false) {
query = query + "&hidden=false";
}
if (!query.match("rtl_content=") &&
f.rtl_content.disabled == false) {
query = query + "&rtl_content=false";
}
if (!query.match("private=") &&
f.private.disabled == false) {
query = query + "&private=false";
}
if (!query.match("cache_images=") &&
f.cache_images.disabled == false) {
query = query + "&cache_images=false";
}
if (!query.match("include_in_digest=") &&
f.include_in_digest.disabled == false) {
query = query + "&include_in_digest=false";
}
closeInfoBox();