mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-15 09:55:04 +00:00
Merge pull request 'Close a tag in history list' (#8) from kensanata/snac2:close-tag into master
Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/8
This commit is contained in:
commit
7ad6ff63a5
1 changed files with 1 additions and 1 deletions
2
html.c
2
html.c
|
@ -812,7 +812,7 @@ d_char *html_timeline(snac *snac, char *list, int local)
|
||||||
while (xs_list_iter(&p, &v)) {
|
while (xs_list_iter(&p, &v)) {
|
||||||
xs *fn = xs_replace(v, ".html", "");
|
xs *fn = xs_replace(v, ".html", "");
|
||||||
xs *s1 = xs_fmt(
|
xs *s1 = xs_fmt(
|
||||||
"<li><a href=\"%s/h/%s\">%s</li>\n",
|
"<li><a href=\"%s/h/%s\">%s</a></li>\n",
|
||||||
snac->actor, v, fn);
|
snac->actor, v, fn);
|
||||||
|
|
||||||
s = xs_str_cat(s, s1);
|
s = xs_str_cat(s, s1);
|
||||||
|
|
Loading…
Reference in a new issue