aboutsummaryrefslogtreecommitdiffstats
path: root/ui-shared.c
diff options
context:
space:
mode:
authorla-ninpre <leobrekalini@gmail.com>2020-11-30 01:58:00 +0300
committerla-ninpre <leobrekalini@gmail.com>2020-11-30 01:58:00 +0300
commite5223c7283878d887d4e67937b7f89f9bf8ba0a1 (patch)
tree3110713e4594213f3499ebecdf6340144579f587 /ui-shared.c
parent5ffe470faf18d12aa1b1b47a1f99232fd1b01570 (diff)
downloadcgit-e5223c7283878d887d4e67937b7f89f9bf8ba0a1.tar.gz
cgit-e5223c7283878d887d4e67937b7f89f9bf8ba0a1.zip
ui-shared: fix another typo
oops, forgot closing tag. it seems that i have no brain
Diffstat (limited to 'ui-shared.c')
-rw-r--r--ui-shared.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui-shared.c b/ui-shared.c
index 81262a3..ad5fd17 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -783,7 +783,7 @@ void cgit_print_docstart(void)
html("<title>");
html_txt(ctx.page.title);
html("</title>\n");
- html("<meta http-equiv=\"content-security-policy\" content=\"default-src 'self'\"");
+ html("<meta http-equiv=\"content-security-policy\" content=\"default-src 'self'\"/>");
htmlf("<meta name='generator' content='cgit %s'/>\n", cgit_version);
if (ctx.cfg.robots && *ctx.cfg.robots)
htmlf("<meta name='robots' content='%s'/>\n", ctx.cfg.robots);