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,8 +2190,8 @@
purge_interval = '$purge_intl',
auth_login = '$auth_login',
auth_pass = '$auth_pass',
private = '$private',
rtl_content = '$rtl_content'
private = $private,
rtl_content = $rtl_content
WHERE id = '$feed_id' AND owner_uid = " . $_SESSION["uid"]);
}