commit b9c57be08b959a242de844c599c9431bed60f564
parent b38f2cabef82dcfb1b0254ab8a8b4878f2da6de6
Author: bsandro <brian.drosan@gmail.com>
Date: Sun, 8 Aug 2021 04:36:48 +0300
stagit-index.c fix: unescaped quotes in string
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/stagit-index.c b/stagit-index.c
@@ -72,7 +72,7 @@ writeheader(FILE *fp)
fprintf(fp, "</title>\n<link rel=\"icon\" type=\"image/png\" href=\"%sfavicon.png\" />\n", relpath);
fprintf(fp, "<link rel=\"stylesheet\" type=\"text/css\" href=\"%sstyle.css\" />\n", relpath);
fputs("</head>\n<body>\n", fp);
- fprintf(fp, "<table>\n<tr><td><a href="/"><img src=\"%slogo.png\" alt=\"\" width=\"32\" height=\"32\" /></a></td>\n"
+ fprintf(fp, "<table>\n<tr><td><a href=\"/\"><img src=\"%slogo.png\" alt=\"\" width=\"32\" height=\"32\" /></a></td>\n"
"<td><span class=\"desc\">", relpath);
xmlencode(fp, description, strlen(description));
fputs("</span></td></tr><tr><td></td><td>\n"