diff options
author | default <nobody@localhost> | 2023-04-25 06:40:46 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2023-04-25 06:40:46 +0200 |
commit | b8eace33c9079a025f96130e81a2cc73a1933cd3 (patch) | |
tree | c76de4b8fd2bfe75932b1c95e04a529841785393 /html.c | |
parent | 3fb91ea25ae5b90493602427efc51fbe2440c3bf (diff) |
Store the what-is-snac URL as a CPP constant.
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -988,9 +988,11 @@ d_char *html_user_footer(snac *snac, d_char *s) xs *s1 = xs_fmt( "<div class=\"snac-footer\">\n" "<a href=\"%s\">%s</a> - " - "powered by <abbr title=\"Social Networks Are Crap\">snac</abbr></div>\n", + "powered by <a href=\"%s\"" + "<abbr title=\"Social Networks Are Crap\">snac</abbr></div></a>\n", srv_baseurl, - L("about this site") + L("about this site"), + WHAT_IS_SNAC_URL ); return xs_str_cat(s, s1); |