diff options
| author | default <nobody@localhost> | 2024-10-06 09:56:40 +0200 |
|---|---|---|
| committer | default <nobody@localhost> | 2024-10-06 09:56:44 +0200 |
| commit | 7774a68f3f8211e9aaa98c837c868f6435eb4acf (patch) | |
| tree | 52053f9459c4a1df13a2ef69388e3028766c4988 /httpd.c | |
| parent | b7e78e6016fba0865e329bb8d72e941e3103a047 (diff) | |
New HTML variable error (still unused).
Diffstat (limited to 'httpd.c')
| -rw-r--r-- | httpd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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(); |