diff options
author | Ted Trask <ttrask01@yahoo.com> | 2008-07-07 19:16:11 +0000 |
---|---|---|
committer | Ted Trask <ttrask01@yahoo.com> | 2008-07-07 19:16:11 +0000 |
commit | 80b754148dd765622006cc602218c88307e42043 (patch) | |
tree | 9351cce3c811929981f37282dd8063c52f662b3a /openssl-checkenvironment-html.lsp | |
parent | dbb622fd1e6c7621281bd14c7a6f88a6a3c7cd10 (diff) | |
download | acf-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-checkenvironment-html.lsp')
-rw-r--r-- | openssl-checkenvironment-html.lsp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/openssl-checkenvironment-html.lsp b/openssl-checkenvironment-html.lsp index 3775402..9b8848c 100644 --- a/openssl-checkenvironment-html.lsp +++ b/openssl-checkenvironment-html.lsp @@ -1,4 +1,4 @@ -<? local form, viewlibrary = ... ?> +<? local form, viewlibrary, page_info = ... ?> <? require("viewfunctions") ?> <? --[[ DEBUG INFORMATION @@ -9,7 +9,7 @@ io.write(html.cfe_unpack(form)) <DL> <? displayitem(form.value.status) ?> <? if form.value.status.errtxt then ?> -<form action="checkenvironment" method="POST"> -<DT><input class="submit" type="submit" name="<?= form.option ?>" value="<?= form.option ?>"></DT> +<form action="<?= page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action ?>" method="POST"> +<DT></DT><DD><input class="submit" type="submit" name="<?= form.option ?>" value="<?= form.option ?>"></DD> <? end ?> </DL> |