1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-02-03 19:27:11 +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

View File

@@ -655,6 +655,14 @@
$qpart = "include_in_digest = '$include_in_digest'";
break;
case "cache_images":
$qpart = "cache_images = '$cache_images'";
break;
case "rtl_content":
$qpart = "rtl_content = '$rtl_content'";
break;
case "update_method":
$qpart = "update_method = '$update_method'";
break;