summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar default2023-01-11 21:51:42 +0100
committerGravatar default2023-01-11 21:51:42 +0100
commit16be679ecdf12f5324f8778e4e03d21a84d4144f (patch)
tree1cdc86c27064c7ce53ce8ed9f1201f63595e8476
parentDeleted unused argument in timeline_request(). (diff)
downloadpenes-snac2-16be679ecdf12f5324f8778e4e03d21a84d4144f.tar.gz
penes-snac2-16be679ecdf12f5324f8778e4e03d21a84d4144f.tar.xz
penes-snac2-16be679ecdf12f5324f8778e4e03d21a84d4144f.zip
Show the More... link above the 'About this site'.
-rw-r--r--html.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/html.c b/html.c
index 4f3da63..089da03 100644
--- a/html.c
+++ b/html.c
@@ -886,8 +886,6 @@ d_char *html_timeline(snac *snac, char *list, int local, int skip, int show, int
886 s = xs_str_cat(s, "</ul></div>\n"); 886 s = xs_str_cat(s, "</ul></div>\n");
887 } 887 }
888 888
889 s = html_user_footer(snac, s);
890
891 { 889 {
892 xs *s1 = xs_fmt("<!-- %lf seconds -->\n", ftime() - t); 890 xs *s1 = xs_fmt("<!-- %lf seconds -->\n", ftime() - t);
893 s = xs_str_cat(s, s1); 891 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
902 s = xs_str_cat(s, s1); 900 s = xs_str_cat(s, s1);
903 } 901 }
904 902
903 s = html_user_footer(snac, s);
904
905 s = xs_str_cat(s, "</body>\n</html>\n"); 905 s = xs_str_cat(s, "</body>\n</html>\n");
906 906
907 return s; 907 return s;