diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | app/filedetails-html.lsp | 5 |
2 files changed, 5 insertions, 2 deletions
@@ -1,6 +1,6 @@ APP_NAME=core PACKAGE=acf-$(APP_NAME) -VERSION=0.8.4 +VERSION=0.8.5 P=$(PACKAGE)-$(VERSION) DISTDIR:=$(shell pwd)/$(P) diff --git a/app/filedetails-html.lsp b/app/filedetails-html.lsp index 02b53d6..6b5a2f3 100644 --- a/app/filedetails-html.lsp +++ b/app/filedetails-html.lsp @@ -21,6 +21,8 @@ displayitem(form.value.mtime) <% form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action %> <% displayformstart(form) %> <input type="hidden" name="filename" value="<%= html.html_escape(form.value.filename.value) %>"> +<% else %> +<DL> <% end %> <textarea name="filecontent"> <%= html.html_escape(form.value.filecontent.value) %> @@ -30,5 +32,6 @@ displayitem(form.value.mtime) <% if form.type == "form" then %> <% displayformend(form) %> +<% else %> +</DL> <% end %> -</form> |