mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-14 17:45:04 +00:00
Minor tweak to snac-poll-form.
This commit is contained in:
parent
22565f5c40
commit
e22da86ccf
1 changed files with 3 additions and 3 deletions
6
html.c
6
html.c
|
@ -1025,8 +1025,8 @@ xs_str *html_entry(snac *snac, xs_str *os, const xs_dict *msg, int local,
|
|||
}
|
||||
else {
|
||||
/* poll still active */
|
||||
xs *s1 = xs_fmt("<form class=\"snac-poll-form\" method=\"post\" "
|
||||
"action=\"%s/admin/vote\">\n"
|
||||
xs *s1 = xs_fmt("<div class=\"snac-poll-form\">\n"
|
||||
"<form method=\"post\" action=\"%s/admin/vote\">\n"
|
||||
"<input type=\"hidden\" name=\"actor\" value= \"%s\">\n"
|
||||
"<input type=\"hidden\" name=\"irt\" value=\"%s\">\n",
|
||||
snac->actor, actor, id);
|
||||
|
@ -1045,7 +1045,7 @@ xs_str *html_entry(snac *snac, xs_str *os, const xs_dict *msg, int local,
|
|||
}
|
||||
|
||||
xs *s2 = xs_fmt("<p><input type=\"submit\" "
|
||||
"class=\"button\" value=\"%s\">\n</form>\n\n", L("Vote"));
|
||||
"class=\"button\" value=\"%s\">\n</form>\n</div>\n\n", L("Vote"));
|
||||
|
||||
s1 = xs_str_cat(s1, s2);
|
||||
|
||||
|
|
Loading…
Reference in a new issue