fix mysql bool setting bug in editFeed

This commit is contained in:
Andrew Dolgov 2006-03-21 08:02:06 +01:00
parent 75bd06697f
commit ac92cb46be
2 changed files with 4 additions and 4 deletions

View File

@ -2190,9 +2190,9 @@
purge_interval = '$purge_intl',
auth_login = '$auth_login',
auth_pass = '$auth_pass',
private = '$private',
rtl_content = '$rtl_content'
WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
private = $private,
rtl_content = $rtl_content
WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
}
if ($subop == "saveCat") {

View File

@ -717,7 +717,7 @@ function feedEditSave() {
if (is_rtl) {
is_rtl = is_rtl.checked;
}
var fcat_id = 0;
if (fcat) {