diff options
| author | 2024-10-06 09:56:40 +0200 | |
|---|---|---|
| committer | 2024-10-06 09:56:44 +0200 | |
| commit | 7774a68f3f8211e9aaa98c837c868f6435eb4acf (patch) | |
| tree | 52053f9459c4a1df13a2ef69388e3028766c4988 /httpd.c | |
| parent | More hashtag regex improvements. (diff) | |
| download | snac2-7774a68f3f8211e9aaa98c837c868f6435eb4acf.tar.gz snac2-7774a68f3f8211e9aaa98c837c868f6435eb4acf.tar.xz snac2-7774a68f3f8211e9aaa98c837c868f6435eb4acf.zip | |
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, | |||
| 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(); |