summaryrefslogtreecommitdiff
path: root/httpd.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2023-11-08 10:14:56 +0100
committerdefault <nobody@localhost>2023-11-08 10:14:56 +0100
commit8417a80fec2549ab76096234584571846286bf8e (patch)
treea392125ef6ca0ba806d3eb4d3e4108b49f6b6c4f /httpd.c
parent7787fc7d32083553ab6e9f611e902c487844af83 (diff)
Added a tag argument to html_timeline().
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 a912df2..c398c05 100644
--- a/httpd.c
+++ b/httpd.c
@@ -162,12 +162,12 @@ int server_get_handler(xs_dict *req, const char *q_path,
more = 1;
}
- *body = html_timeline(NULL, tl, 0, skip, show, more);
+ *body = html_timeline(NULL, tl, 0, skip, show, more, t);
}
else
if (xs_type(xs_dict_get(srv_config, "show_instance_timeline")) == XSTYPE_TRUE) {
xs *tl = timeline_instance_list(0, 30);
- *body = html_timeline(NULL, tl, 0, 0, 0, 0);
+ *body = html_timeline(NULL, tl, 0, 0, 0, 0, NULL);
}
else
*body = greeting_html();