diff options
author | default <nobody@localhost> | 2024-05-15 05:57:21 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2024-05-15 05:57:21 +0200 |
commit | 34311714ce725da9fae9fea3b29a4988977c79bd (patch) | |
tree | e834d3f2bdc6e3d54ab4dc0f101e0650e139f3f0 /httpd.c | |
parent | 281f934f74c662d3c2e58db556f3046a736a2f00 (diff) |
User search can also be done by tag.
Diffstat (limited to 'httpd.c')
-rw-r--r-- | httpd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -202,7 +202,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 #%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); } } |