summaryrefslogtreecommitdiff
path: root/httpd.c
diff options
context:
space:
mode:
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,
204 else { 204 else {
205 xs *page = xs_fmt("?t=%s", t); 205 xs *page = xs_fmt("?t=%s", t);
206 xs *title = xs_fmt(L("Search results for tag #%s"), t); 206 xs *title = xs_fmt(L("Search results for tag #%s"), t);
207 *body = html_timeline(NULL, tl, 0, skip, show, more, title, page, 0); 207 *body = html_timeline(NULL, tl, 0, skip, show, more, title, page, 0, NULL);
208 } 208 }
209 } 209 }
210 else 210 else
@@ -212,7 +212,7 @@ int server_get_handler(xs_dict *req, const char *q_path,
212 /** instance timeline **/ 212 /** instance timeline **/
213 xs *tl = timeline_instance_list(0, 30); 213 xs *tl = timeline_instance_list(0, 30);
214 *body = html_timeline(NULL, tl, 0, 0, 0, 0, 214 *body = html_timeline(NULL, tl, 0, 0, 0, 0,
215 L("Recent posts by users in this instance"), NULL, 0); 215 L("Recent posts by users in this instance"), NULL, 0, NULL);
216 } 216 }
217 else 217 else
218 *body = greeting_html(); 218 *body = greeting_html();