properly show ttrss_feeds.private in feed editor

This commit is contained in:
Andrew Dolgov 2008-09-30 12:34:49 +01:00
parent 1d004f12ed
commit 886d4bce27
1 changed files with 8 additions and 0 deletions

View File

@ -305,6 +305,14 @@
print "<div style=\"line-height : 100%\">";
$private = sql_bool_to_bool(db_fetch_result($result, 0, "private"));
if ($private) {
$checked = "checked";
} else {
$checked = "";
}
print "<input type=\"checkbox\" name=\"private\" id=\"private\"
$checked>&nbsp;<label for=\"private\">".__('Hide from "Other Feeds"')."</label>";