From 7774a68f3f8211e9aaa98c837c868f6435eb4acf Mon Sep 17 00:00:00 2001 From: default Date: Sun, 6 Oct 2024 09:56:40 +0200 Subject: New HTML variable error (still unused). --- httpd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'httpd.c') diff --git a/httpd.c b/httpd.c index fd3d9e4..2fe9d6b 100644 --- a/httpd.c +++ b/httpd.c @@ -204,7 +204,7 @@ int server_get_handler(xs_dict *req, const char *q_path, else { xs *page = xs_fmt("?t=%s", t); xs *title = xs_fmt(L("Search results for tag #%s"), t); - *body = html_timeline(NULL, tl, 0, skip, show, more, title, page, 0); + *body = html_timeline(NULL, tl, 0, skip, show, more, title, page, 0, NULL); } } else @@ -212,7 +212,7 @@ int server_get_handler(xs_dict *req, const char *q_path, /** instance timeline **/ xs *tl = timeline_instance_list(0, 30); *body = html_timeline(NULL, tl, 0, 0, 0, 0, - L("Recent posts by users in this instance"), NULL, 0); + L("Recent posts by users in this instance"), NULL, 0, NULL); } else *body = greeting_html(); -- cgit v1.2.3