mirror of
https://git.zx2c4.com/cgit
synced 2024-11-09 18:18:42 +00:00
ui-atom: properly escape delimiter in page link
If the delimiter here is '&' then it needs to be escaped for inclusion in an attribute. Use html_attrf() to ensure that this happens (we know that hex won't need escaping, but this makes it clearer what's happening. Signed-off-by: John Keeping <john@keeping.me.uk>
This commit is contained in:
parent
86a6d358f7
commit
6d3c8bc37f
@ -63,7 +63,7 @@ static void add_entry(struct commit *commit, const char *host)
|
|||||||
html_attr(pageurl);
|
html_attr(pageurl);
|
||||||
if (ctx.cfg.virtual_root)
|
if (ctx.cfg.virtual_root)
|
||||||
delim = '?';
|
delim = '?';
|
||||||
htmlf("%cid=%s", delim, hex);
|
html_attrf("%cid=%s", delim, hex);
|
||||||
html("'/>\n");
|
html("'/>\n");
|
||||||
free(pageurl);
|
free(pageurl);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user