diff options
author | default <nobody@localhost> | 2022-12-08 08:04:18 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2022-12-08 08:04:18 +0100 |
commit | 2dba85ead200344d30dd66e54794007ae2949301 (patch) | |
tree | 7da1dffd326bdd3ffe5e40f2ce7bacb338c11820 | |
parent | a1673e6d0c23136a571b89b3aa7933837a05daa6 (diff) |
Also add 'redir' hidden field to Replies.
-rw-r--r-- | html.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -465,6 +465,7 @@ d_char *html_entry_controls(snac *snac, d_char *os, char *msg, const char *md5) "<input type=\"hidden\" name=\"in_reply_to\" value=\"%s\">\n" "<p><input type=\"checkbox\" name=\"sensitive\"> %s\n" "<p><input type=\"file\" name=\"attach\">\n" + "<input type=\"hidden\" name=\"redir\" value=\"%s_entry\">\n" "<p><input type=\"submit\" class=\"button\" value=\"%s\">\n" "</form><p></div>\n" "</details><p>" @@ -476,6 +477,7 @@ d_char *html_entry_controls(snac *snac, d_char *os, char *msg, const char *md5) ct, id, L("Sensitive content"), + md5, L("Post") ); |