aboutsummaryrefslogtreecommitdiff
path: root/httpd.c
diff options
context:
space:
mode:
authorgrunfink <grunfink@comam.es>2026-09-01 15:01:08 +0200
committergrunfink <grunfink@comam.es>2026-09-01 15:01:08 +0200
commit2e4a9a94208d6ecdd4b70aff7d7c7d6dddefdfaa (patch)
tree59215f6f8b4f9847af3d54cfad18ed92337f724b /httpd.c
parentc38ad28d5daa44b592a04192c7eeebed644593d4 (diff)
More text browser friendly stuff.
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 5b503b9..3504f3e 100644
--- a/httpd.c
+++ b/httpd.c
@@ -258,7 +258,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, NULL, 0);
+ *body = html_timeline(NULL, tl, 0, skip, show, more, title, page, 0, NULL, 0, 0);
}
}
else
@@ -266,7 +266,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, NULL, 0);
+ L("Recent posts by users in this instance"), NULL, 0, NULL, 0, 0);
}
else
*body = greeting_html();