diff options
author | default <nobody@localhost> | 2023-01-11 21:51:42 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2023-01-11 21:51:42 +0100 |
commit | 16be679ecdf12f5324f8778e4e03d21a84d4144f (patch) | |
tree | 1cdc86c27064c7ce53ce8ed9f1201f63595e8476 | |
parent | 6b344b8c2e5611bdaefd1f541b054d0758eb6c2b (diff) |
Show the More... link above the 'About this site'.
-rw-r--r-- | html.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -886,8 +886,6 @@ d_char *html_timeline(snac *snac, char *list, int local, int skip, int show, int s = xs_str_cat(s, "</ul></div>\n"); } - s = html_user_footer(snac, s); - { xs *s1 = xs_fmt("<!-- %lf seconds -->\n", ftime() - t); s = xs_str_cat(s, s1); @@ -902,6 +900,8 @@ d_char *html_timeline(snac *snac, char *list, int local, int skip, int show, int s = xs_str_cat(s, s1); } + s = html_user_footer(snac, s); + s = xs_str_cat(s, "</body>\n</html>\n"); return s; |