commit 979389fd4719311fc3b2dc0dd68fc5f1e2428d37
parent 28816aaa85c6a2bd4ef24a24ae5a4ed53c1f54b8
Author: default <nobody@localhost>
Date: Wed, 7 Dec 2022 10:12:59 +0100
Fixed last minute typo.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/html.c b/html.c
@@ -843,7 +843,7 @@ d_char *html_timeline(snac *snac, char *list, int local, int skip, int show, int
xs *s1 = xs_fmt(
"<p>"
"<a href=\"%s%s?skip=%d&show=%d\" name=\"snac-more\">%s</a>"
- "</p>\n", local ? "" : "/admin", snac->actor, skip + show, show, L("More..."));
+ "</p>\n", snac->actor, local ? "" : "/admin", skip + show, show, L("More..."));
s = xs_str_cat(s, s1);
}