diff options
author | Malfurious <m@lfurio.us> | 2023-11-16 23:54:11 -0500 |
---|---|---|
committer | Malfurious <m@lfurio.us> | 2023-11-18 00:45:27 -0500 |
commit | a85783ed0b1ae567574f5f9986a235ce747b8af0 (patch) | |
tree | cede6dd18e0f8eade48992b7867540f9d11bec7a /dmt/html/master.html | |
parent | b71993fcc0da84e8f168baa6f0518de2eb1bc3c7 (diff) | |
download | cychedelic-a85783ed0b1ae567574f5f9986a235ce747b8af0.tar.gz cychedelic-a85783ed0b1ae567574f5f9986a235ce747b8af0.zip |
dmt: Escape unintended HTML entities
Signed-off-by: Malfurious <m@lfurio.us>
Diffstat (limited to '')
-rw-r--r-- | dmt/html/master.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dmt/html/master.html b/dmt/html/master.html index 8118ca0..570c511 100644 --- a/dmt/html/master.html +++ b/dmt/html/master.html @@ -2,7 +2,7 @@ <html> <head> - <title>%($CYCHE_SITE_NAME%)</title> + <title>%{ echo -n "$CYCHE_SITE_NAME" | escape_html %}</title> <link rel="stylesheet" type="text/css" href="/style.css" /> </head> @@ -12,7 +12,7 @@ | etc... <span class="right"> - %($CYCHE_SITE_NAME%) + %{ echo -n "$CYCHE_SITE_NAME" | escape_html %} <span id="nav_progress"></span> </span> </nav> |