mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-14 17:45:04 +00:00
Fixed Draft: label title.
This commit is contained in:
parent
06376f79c8
commit
c30036f8c3
1 changed files with 7 additions and 6 deletions
13
html.c
13
html.c
|
@ -361,12 +361,13 @@ xs_html *html_note(snac *user, const char *summary,
|
|||
|
||||
xs_html_add(form,
|
||||
xs_html_tag("p", NULL),
|
||||
xs_html_attr("title", L("Don't send, but store as a draft")),
|
||||
xs_html_text(L("Draft:")),
|
||||
xs_html_sctag("input",
|
||||
xs_html_attr("type", "checkbox"),
|
||||
xs_html_attr("name", "is_draft"),
|
||||
xs_html_attr(is_draft ? "checked" : "", NULL)));
|
||||
xs_html_tag("span",
|
||||
xs_html_attr("title", L("Don't send, but store as a draft")),
|
||||
xs_html_text(L("Draft:")),
|
||||
xs_html_sctag("input",
|
||||
xs_html_attr("type", "checkbox"),
|
||||
xs_html_attr("name", "is_draft"),
|
||||
xs_html_attr(is_draft ? "checked" : "", NULL))));
|
||||
|
||||
if (edit_id)
|
||||
xs_html_add(form,
|
||||
|
|
Loading…
Reference in a new issue