diff options
author | Yonle <yonle@lecturify.net> | 2023-07-23 23:26:33 +0700 |
---|---|---|
committer | Yonle <yonle@lecturify.net> | 2023-07-24 20:15:40 +0700 |
commit | 68d03d6d514358bf07db012622eb940a981f1960 (patch) | |
tree | 5e25be5e0cf17fa5409383d75cbee53b7d33755a | |
parent | 75e061a9f78939e3235125ec180186080bd57b58 (diff) |
html.c: No need to redirect to #snac-posts again.
Form has been minimized with <details> since commit c409d2e,
So there is no need to redirect user to user/admin#snac-posts again.
Signed-off-by: Yonle <yonle@lecturify.net>
-rw-r--r-- | html.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -345,7 +345,7 @@ d_char *html_user_header(snac *snac, d_char *s, int local) "<a href=\"notifications\">%s</a>%s - " "<a href=\"people\">%s</a></nav>\n" "<a href=\"settings\">%s</a>" - "</nav>" + "</nav>", snac->uid, L("public"), L("private"), L("notifications"), n_str, @@ -750,7 +750,7 @@ xs_str *html_entry_controls(snac *snac, xs_str *os, const xs_dict *msg, const ch L("Edit..."), md5, - snac->actor, md5, + md5, prev_src, id, L("Sensitive content"), @@ -2394,7 +2394,7 @@ int html_post_handler(const xs_dict *req, const char *q_path, char *redir = xs_dict_get(p_vars, "redir"); if (xs_is_null(redir)) - redir = "snac-posts"; + redir = ""; *body = xs_fmt("../admin#%s", redir); *b_size = strlen(*body); |