summaryrefslogtreecommitdiff
path: root/httpd.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2024-05-15 05:57:21 +0200
committerdefault <nobody@localhost>2024-05-15 05:57:21 +0200
commit34311714ce725da9fae9fea3b29a4988977c79bd (patch)
treee834d3f2bdc6e3d54ab4dc0f101e0650e139f3f0 /httpd.c
parent281f934f74c662d3c2e58db556f3046a736a2f00 (diff)
User search can also be done by tag.
Diffstat (limited to 'httpd.c')
-rw-r--r--httpd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/httpd.c b/httpd.c
index 81b0853..71cce5e 100644
--- a/httpd.c
+++ b/httpd.c
@@ -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);
}
}