summaryrefslogtreecommitdiffstats
path: root/lbu-listchanges-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'lbu-listchanges-html.lsp')
-rw-r--r--lbu-listchanges-html.lsp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lbu-listchanges-html.lsp b/lbu-listchanges-html.lsp
index 0733e96..42d6387 100644
--- a/lbu-listchanges-html.lsp
+++ b/lbu-listchanges-html.lsp
@@ -22,7 +22,7 @@ end %>
<H1>Download Overlay</H1>
<DL>
<DT>Generate and download overlay</DT>
- <DD><form action="<%= page_info.script .. page_info.prefix %>lbu/getpackage" method="POST">
+ <DD><form action="<%= html.html_escape(page_info.script .. page_info.prefix) %>lbu/getpackage" method="POST">
<input class="submit" type="submit" name="Download" value="Download"></form></DD>
</DL>
<% end %>
@@ -35,7 +35,7 @@ end %>
io.write("None")
else
for i,file in pairs(view.value) do
- io.write(file.status .. "\t" .. file.name .. "\n")
+ io.write(html.html_escape(file.status .. "\t" .. file.name .. "\n"))
end
end
%></pre></DD>