summaryrefslogtreecommitdiffstats
path: root/logfiles-view-html.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'logfiles-view-html.lsp')
-rw-r--r--logfiles-view-html.lsp6
1 files changed, 3 insertions, 3 deletions
diff --git a/logfiles-view-html.lsp b/logfiles-view-html.lsp
index 338a384..386eb91 100644
--- a/logfiles-view-html.lsp
+++ b/logfiles-view-html.lsp
@@ -23,13 +23,13 @@ end
<% if form.type == "form" then %>
<% form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action %>
<% displayformstart(form) %>
-<input type="hidden" name="filename" value="<%= form.value.filename.value %>">
+<input type="hidden" name="filename" value="<%= html.html_escape(form.value.filename.value) %>">
<% end %>
<textarea name="filecontent">
<%= html.html_escape(form.value.filecontent.value) %>
</textarea>
-<% if form.value.filecontent.errtxt then %><P CLASS='error'><%= string.gsub(form.value.filecontent.errtxt, "\n", "<BR>") %></P><% end %>
-<% if form.value.filecontent.descr then %><P CLASS='descr'><%= string.gsub(form.value.filecontent.descr, "\n", "<BR>") %></P><% end %>
+<% if form.value.filecontent.errtxt then %><P CLASS='error'><%= string.gsub(html.html_escape(form.value.filecontent.errtxt), "\n", "<BR>") %></P><% end %>
+<% if form.value.filecontent.descr then %><P CLASS='descr'><%= string.gsub(html.html_escape(form.value.filecontent.descr), "\n", "<BR>") %></P><% end %>
<% if form.type == "form" then %>
<H3>Save</H3>