summaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
authorGravatar default2023-04-25 06:40:46 +0200
committerGravatar default2023-04-25 06:40:46 +0200
commitb8eace33c9079a025f96130e81a2cc73a1933cd3 (patch)
treec76de4b8fd2bfe75932b1c95e04a529841785393 /html.c
parentSkip muted morons from timelines and statuses. (diff)
downloadsnac2-b8eace33c9079a025f96130e81a2cc73a1933cd3.tar.gz
snac2-b8eace33c9079a025f96130e81a2cc73a1933cd3.tar.xz
snac2-b8eace33c9079a025f96130e81a2cc73a1933cd3.zip
Store the what-is-snac URL as a CPP constant.
Diffstat (limited to 'html.c')
-rw-r--r--html.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/html.c b/html.c
index c9cf9e3..5f57262 100644
--- a/html.c
+++ b/html.c
@@ -988,9 +988,11 @@ d_char *html_user_footer(snac *snac, d_char *s)
988 xs *s1 = xs_fmt( 988 xs *s1 = xs_fmt(
989 "<div class=\"snac-footer\">\n" 989 "<div class=\"snac-footer\">\n"
990 "<a href=\"%s\">%s</a> - " 990 "<a href=\"%s\">%s</a> - "
991 "powered by <abbr title=\"Social Networks Are Crap\">snac</abbr></div>\n", 991 "powered by <a href=\"%s\""
992 "<abbr title=\"Social Networks Are Crap\">snac</abbr></div></a>\n",
992 srv_baseurl, 993 srv_baseurl,
993 L("about this site") 994 L("about this site"),
995 WHAT_IS_SNAC_URL
994 ); 996 );
995 997
996 return xs_str_cat(s, s1); 998 return xs_str_cat(s, s1);