summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--html.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/html.lua b/html.lua
index 2724191..5b1b444 100644
--- a/html.lua
+++ b/html.lua
@@ -193,13 +193,13 @@ function mymodule.form.select ( v )
for i,k in ipairs ( {
"name", "size", "tabindex", "accesskey",
"onfocus", "onblur", "onchange", "id",
- "class", "multiple", "title"
+ "class", "title"
} ) do
str = str .. nv_pair ( k, v[k] )
end
for i,k in ipairs ( {
- "disabled",
+ "disabled", "multiple"
} ) do
str = str .. boolean_attribute ( k, v[k] )
end