issue 913, handle html5 input types, thanks Howesc

This commit is contained in:
mdipierro
2012-07-28 19:14:19 -05:00
parent 9db2afdd06
commit e227bfc2c4
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
Version 2.00.0 (2012-07-28 19:11:10) dev
Version 2.00.0 (2012-07-28 19:14:16) dev
+1 -1
View File
@@ -1669,7 +1669,7 @@ class INPUT(DIV):
self['_checked'] = 'checked'
else:
self['_checked'] = None
elif t == 'text' or t == 'hidden':
elif not t == 'submit':
if value is None:
self['value'] = _value
else: