properly show ttrss_feeds.private in feed editor
This commit is contained in:
parent
1d004f12ed
commit
886d4bce27
1 changed files with 8 additions and 0 deletions
|
@ -305,6 +305,14 @@
|
||||||
|
|
||||||
print "<div style=\"line-height : 100%\">";
|
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\"
|
print "<input type=\"checkbox\" name=\"private\" id=\"private\"
|
||||||
$checked> <label for=\"private\">".__('Hide from "Other Feeds"')."</label>";
|
$checked> <label for=\"private\">".__('Hide from "Other Feeds"')."</label>";
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue