summaryrefslogtreecommitdiff
path: root/httpd.c
diff options
context:
space:
mode:
authorGravatar grunfink2023-07-24 16:16:14 +0000
committerGravatar grunfink2023-07-24 16:16:14 +0000
commit1882c25a179273510312b2341dbdff8b74df5e3c (patch)
treea9d4cb2f7f7d38bb71efcbde78de9bed8ef79eaa /httpd.c
parentMerge pull request 'Web Client: Do not hard link on <a> element' (#75) from y... (diff)
parenthtml.c: Put "User Settings" outside of "Operations". (diff)
downloadsnac2-1882c25a179273510312b2341dbdff8b74df5e3c.tar.gz
snac2-1882c25a179273510312b2341dbdff8b74df5e3c.tar.xz
snac2-1882c25a179273510312b2341dbdff8b74df5e3c.zip
Merge pull request 'Major rollback & Put "User Settings" outside of "Operations...."' (#76) from yonle/snac2:master into master
Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/76
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 1d2200e..9aac3b5 100644
--- a/httpd.c
+++ b/httpd.c
@@ -91,7 +91,7 @@ int server_get_handler(xs_dict *req, char *q_path,
91 if (user_open(&snac, uid)) { 91 if (user_open(&snac, uid)) {
92 xs *u = xs_fmt( 92 xs *u = xs_fmt(
93 "<li><a href=\"%s\">@%s@%s (%s)</a></li>\n", 93 "<li><a href=\"%s\">@%s@%s (%s)</a></li>\n",
94 uid, uid, host, 94 snac.actor, uid, host,
95 xs_dict_get(snac.config, "name")); 95 xs_dict_get(snac.config, "name"));
96 96
97 ul = xs_str_cat(ul, u); 97 ul = xs_str_cat(ul, u);