[PATCH] html: fully escape links on index page descriptions

Chris Mayo aklhfex at gmail.com
Mon Feb 18 21:14:17 CET 2019


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 <aklhfex at gmail.com>
---
 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



More information about the CGit mailing list