summaryrefslogtreecommitdiff
path: root/httpd.c
diff options
context:
space:
mode:
authorGravatar grunfink2023-07-24 14:00:35 +0000
committerGravatar grunfink2023-07-24 14:00:35 +0000
commit34963e0abcea1189a0bf5eec5695549c0c8bb183 (patch)
tree087a7397bf5d34cda3e64259afcc4d380305c920 /httpd.c
parentUpdated RELEASE_NOTES. (diff)
parenthtml.c: Rollback to e9adaa1f7a, Put "User Settings..." outside of "Operations... (diff)
downloadsnac2-34963e0abcea1189a0bf5eec5695549c0c8bb183.tar.gz
snac2-34963e0abcea1189a0bf5eec5695549c0c8bb183.tar.xz
snac2-34963e0abcea1189a0bf5eec5695549c0c8bb183.zip
Merge pull request 'Web Client: Do not hard link on <a> element' (#75) from yonle/snac2:nohardlink into master
Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/75
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 9aac3b5..1d2200e 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 snac.actor, uid, host, 94 uid, 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);