mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-22 21:35:04 +00:00
Fixed stray end of a tag.
This commit is contained in:
parent
73ce97ae94
commit
cd74f80279
1 changed files with 1 additions and 1 deletions
2
html.c
2
html.c
|
@ -1116,7 +1116,7 @@ xs_str *html_entry(snac *user, xs_str *os, const xs_dict *msg, int local,
|
||||||
xs *es1 = encode_html(xs_dict_get(user->config, "name"));
|
xs *es1 = encode_html(xs_dict_get(user->config, "name"));
|
||||||
xs *s1 = xs_fmt(
|
xs *s1 = xs_fmt(
|
||||||
"<div class=\"snac-origin\">"
|
"<div class=\"snac-origin\">"
|
||||||
"<a href=\"%s\">%s</a> %s</a></div>",
|
"<a href=\"%s\">%s</a> %s</div>",
|
||||||
user->actor, es1, L("boosted")
|
user->actor, es1, L("boosted")
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue