A space in repo.url was being converted to %20 in the link on repository name but not in the link on repository description.
Signed-off-by: Chris Mayo <[email protected]> --- html.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html.c b/html.c index 7f81965..f731c72 100644 --- a/html.c +++ b/html.c @@ -288,7 +288,7 @@ void html_intoption(int value, const char *text, int selected_value) void html_link_open(const char *url, const char *title, const char *class) { html("<a href='"); - html_attr(url); + html_url_path(url); if (title) { html("' title='"); html_attr(title); -- 2.20.1 _______________________________________________ CGit mailing list [email protected] https://lists.zx2c4.com/mailman/listinfo/cgit
