summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorZach LeBar <zach@zachlebar.com>1980-02-23 04:31:51 +0000
committerZach LeBar <zach@zachlebar.com>1980-02-23 04:31:51 +0000
commite51d542c0648d3b0b7fb06b214edb3bda786cab7 (patch)
tree984e3446492961740663f3d53aad9cb82c6375fd /lib
parent29f88d18703ba3136d1b0b4739a302b64305f3d4 (diff)
downloadacf-core-e51d542c0648d3b0b7fb06b214edb3bda786cab7.tar.bz2
acf-core-e51d542c0648d3b0b7fb06b214edb3bda786cab7.tar.xz
Cleaning and refining the HTML.HEADmaster
Diffstat (limited to 'lib')
-rw-r--r--lib/htmlviewfunctions.lua10
1 files changed, 3 insertions, 7 deletions
diff --git a/lib/htmlviewfunctions.lua b/lib/htmlviewfunctions.lua
index 4e8d4b8..22385b6 100644
--- a/lib/htmlviewfunctions.lua
+++ b/lib/htmlviewfunctions.lua
@@ -161,9 +161,8 @@ function displayformstart(myform, page_info)
if not myform.action and page_info then
myform.action = page_info.script .. page_info.prefix .. page_info.controller .. "/" .. page_info.action
end
- io.write('<DL>\n')
- if myform.descr then io.write('<P CLASS="descr">' .. string.gsub(html.html_escape(myform.descr), "\n", "<BR>") .. "</P>\n") end
- if myform.errtxt then io.write('<P CLASS="error">' .. string.gsub(html.html_escape(myform.errtxt), "\n", "<BR>") .. "</P>\n") end
+ if myform.descr then io.write('<p>' .. string.gsub(html.html_escape(myform.descr), "\n", "<br/>") .. "</p>\n") end
+ if myform.errtxt then io.write('<p class="error">' .. string.gsub(html.html_escape(myform.errtxt), "\n", "<br/>") .. "</p>\n") end
io.write('<form action="' .. html.html_escape(myform.action) .. '" ')
if myform.enctype and myform.enctype ~= "" then
io.write('enctype="'..html.html_escape(myform.enctype)..'" ')
@@ -226,7 +225,6 @@ end
function displayformend(myform)
if not myform then return end
local option = myform.submit or myform.option
- io.write('<DT></DT><DD>')
if type(option) == "table" then
for i,v in ipairs(option) do
io.write('<input class="submit" type="submit" name="submit" value="' .. html.html_escape(v) .. '">\n')
@@ -234,9 +232,7 @@ function displayformend(myform)
else
io.write('<input class="submit" type="submit" name="submit" value="' .. html.html_escape(myform.submit or myform.option) .. '">\n')
end
- io.write('</DD>\n')
- io.write('</FORM>')
- io.write('</DL>\n')
+ io.write('</form>')
end
function displayform(myform, order, finishingorder, page_info, header_level)