summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2009-12-10 15:46:14 +0000
committerTed Trask <ttrask01@yahoo.com>2009-12-10 15:46:14 +0000
commitb2b8ac87e45257215fa9642858a3bc5903b160e6 (patch)
treed60161a7ba1b287553611f66a2ae1229f625d925
parentcc0cbcf40b89a2b52d55dc391cf7d7bdfe7cd1c6 (diff)
downloadacf-core-b2b8ac87e45257215fa9642858a3bc5903b160e6.tar.bz2
acf-core-b2b8ac87e45257215fa9642858a3bc5903b160e6.tar.xz
UI fix, bumped to 0.8.5v0.8.5
-rw-r--r--Makefile2
-rw-r--r--app/filedetails-html.lsp5
2 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c7b697d..1f7617e 100644
--- a/Makefile
+++ b/Makefile
@@ -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>