diff options
Diffstat (limited to 'app/filedetails-html.lsp')
-rw-r--r-- | app/filedetails-html.lsp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/filedetails-html.lsp b/app/filedetails-html.lsp index ae6d218..03cb37b 100644 --- a/app/filedetails-html.lsp +++ b/app/filedetails-html.lsp @@ -25,7 +25,11 @@ htmlviewfunctions.displaysectionstart(cfe({label="File Content"}), page_info, he if form.type == "form" then htmlviewfunctions.displayformstart(form, page_info) form.value.filename.type = "hidden" - htmlviewfunctions.displayformitem(form.value.filename, "filename") + for name,value in pairs(form.value) do + if value.type == "hidden" then + htmlviewfunctions.displayformitem(value, name) + end + end end %> <textarea name="filecontent"> |