diff options
author | Ted Trask <ttrask01@yahoo.com> | 2014-03-10 00:51:27 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2014-03-10 00:51:27 +0000 |
commit | 0d13dbbc43b7c48eb23246cf4f2c277cbb5942c3 (patch) | |
tree | bcb619130450f6f19c40cb50f79111b9793e5e81 /app/filedetails-html.lsp | |
parent | c7a4b3984140613848d090e8b4d7839e4ffcb26f (diff) | |
download | acf-core-0d13dbbc43b7c48eb23246cf4f2c277cbb5942c3.tar.bz2 acf-core-0d13dbbc43b7c48eb23246cf4f2c277cbb5942c3.tar.xz |
Modified HTML views to use new htmlviewfunctions functions and replace links with forms created by displayitem
Use .displayitemstart/middle/end
Diffstat (limited to 'app/filedetails-html.lsp')
-rw-r--r-- | app/filedetails-html.lsp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/filedetails-html.lsp b/app/filedetails-html.lsp index 3116722..fd0d8dd 100644 --- a/app/filedetails-html.lsp +++ b/app/filedetails-html.lsp @@ -25,8 +25,7 @@ end <% htmlviewfunctions.displayheader(cfe({label="File Content"}), page_info, header_level) if form.type == "form" then - form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action - htmlviewfunctions.displayformstart(form) + htmlviewfunctions.displayformstart(form, page_info) form.value.filename.type = "hidden" htmlviewfunctions.displayformitem(form.value.filename) end |