aboutsummaryrefslogtreecommitdiff
path: root/httpd.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2024-10-06 09:56:40 +0200
committerdefault <nobody@localhost>2024-10-06 09:56:44 +0200
commit7774a68f3f8211e9aaa98c837c868f6435eb4acf (patch)
tree52053f9459c4a1df13a2ef69388e3028766c4988 /httpd.c
parentb7e78e6016fba0865e329bb8d72e941e3103a047 (diff)
New HTML variable error (still unused).
Diffstat (limited to 'httpd.c')
-rw-r--r--httpd.c4
1 files changed, 2 insertions, 2 deletions
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();