summaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
Diffstat (limited to 'html.c')
-rw-r--r--html.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/html.c b/html.c
index a17160f..5673062 100644
--- a/html.c
+++ b/html.c
@@ -196,7 +196,7 @@ d_char *html_top_controls(snac *snac, d_char *s)
196 "rows=\"8\" wrap=\"virtual\" required=\"required\"></textarea>\n" 196 "rows=\"8\" wrap=\"virtual\" required=\"required\"></textarea>\n"
197 "<input type=\"hidden\" name=\"in_reply_to\" value=\"\">\n" 197 "<input type=\"hidden\" name=\"in_reply_to\" value=\"\">\n"
198 "<input type=\"submit\" class=\"button\" value=\"%s\">\n" 198 "<input type=\"submit\" class=\"button\" value=\"%s\">\n"
199 "<input type=\"text\" name=\"attach_url\"> Image URL<p>" 199 "<input type=\"text\" name=\"attach_url\"> %s<p>"
200 "</form><p>\n" 200 "</form><p>\n"
201 "</div>\n" 201 "</div>\n"
202 202
@@ -244,6 +244,7 @@ d_char *html_top_controls(snac *snac, d_char *s)
244 xs *s1 = xs_fmt(_tmpl, 244 xs *s1 = xs_fmt(_tmpl,
245 snac->actor, 245 snac->actor,
246 L("Post"), 246 L("Post"),
247 L("Image to attach (URL)"),
247 248
248 L("More options..."), 249 L("More options..."),
249 250
@@ -393,13 +394,15 @@ d_char *html_entry_controls(snac *snac, d_char *os, char *msg)
393 "rows=\"4\" wrap=\"virtual\" required=\"required\">%s</textarea>\n" 394 "rows=\"4\" wrap=\"virtual\" required=\"required\">%s</textarea>\n"
394 "<input type=\"hidden\" name=\"in_reply_to\" value=\"%s\">\n" 395 "<input type=\"hidden\" name=\"in_reply_to\" value=\"%s\">\n"
395 "<input type=\"submit\" class=\"button\" value=\"%s\">\n" 396 "<input type=\"submit\" class=\"button\" value=\"%s\">\n"
397 "<input type=\"text\" name=\"attach_url\"> %s<p>"
396 "</form><p></div>\n", 398 "</form><p></div>\n",
397 399
398 md5, 400 md5,
399 snac->actor, md5, 401 snac->actor, md5,
400 ct, 402 ct,
401 id, 403 id,
402 L("Post") 404 L("Post"),
405 L("Image to attach (URL)")
403 ); 406 );
404 407
405 s = xs_str_cat(s, s1); 408 s = xs_str_cat(s, s1);