summaryrefslogtreecommitdiffstats
path: root/openssl-putcacert-html.lsp
diff options
context:
space:
mode:
authorTed Trask <ttrask01@yahoo.com>2008-07-07 19:16:11 +0000
committerTed Trask <ttrask01@yahoo.com>2008-07-07 19:16:11 +0000
commit80b754148dd765622006cc602218c88307e42043 (patch)
tree9351cce3c811929981f37282dd8063c52f662b3a /openssl-putcacert-html.lsp
parentdbb622fd1e6c7621281bd14c7a6f88a6a3c7cd10 (diff)
downloadacf-openssl-80b754148dd765622006cc602218c88307e42043.tar.bz2
acf-openssl-80b754148dd765622006cc602218c88307e42043.tar.xz
Update openssl to use controllerfunctions and modelfunctions.
git-svn-id: svn://svn.alpinelinux.org/acf/openssl/trunk@1287 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'openssl-putcacert-html.lsp')
-rw-r--r--openssl-putcacert-html.lsp5
1 files changed, 3 insertions, 2 deletions
diff --git a/openssl-putcacert-html.lsp b/openssl-putcacert-html.lsp
index ed3ab02..2a2cfb7 100644
--- a/openssl-putcacert-html.lsp
+++ b/openssl-putcacert-html.lsp
@@ -1,4 +1,4 @@
-<? local form = ... ?>
+<? local form, viewlibrary, page_info = ... ?>
<? require("viewfunctions") ?>
<? --[[ DEBUG INFORMATION
@@ -7,7 +7,8 @@ io.write(html.cfe_unpack(form))
<H1><?= form.label ?></H1>
<?
- form.action = 'putcacert" enctype="multipart/form-data'
+ -- This is a kludge to get file upload working
+ form.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action .. '" enctype="multipart/form-data'
form.value.ca.type="file"
form.value.password.type="password"
local order = {"ca", "password"}