From 1caf7b514012dfbed1b687bbf153cdb20d273ec1 Mon Sep 17 00:00:00 2001 From: mdipierro Date: Wed, 8 Jan 2014 11:16:51 -0600 Subject: [PATCH] fixed 1845:styling widget divs, thanks Paolo Caruccio --- VERSION | 2 +- gluon/sqlhtml.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index 75d800fb..1c362945 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.8.2-stable+timestamp.2014.01.08.11.12.43 +Version 2.8.2-stable+timestamp.2014.01.08.11.15.41 diff --git a/gluon/sqlhtml.py b/gluon/sqlhtml.py index 9bc86c4e..409ad9dc 100644 --- a/gluon/sqlhtml.py +++ b/gluon/sqlhtml.py @@ -361,7 +361,7 @@ class RadioWidget(OptionsWidget): wrappers = dict( table=(TABLE, TR, TD), ul=(DIV, UL, LI), - divs=(CAT, DIV, DIV) + divs=(DIV, DIV, DIV) ) parent, child, inner = wrappers[attributes.get('style', 'table')] @@ -427,7 +427,7 @@ class CheckboxesWidget(OptionsWidget): wrappers = dict( table=(TABLE, TR, TD), ul=(DIV, UL, LI), - divs=(CAT, DIV, DIV) + divs=(DIV, DIV, DIV) ) parent, child, inner = wrappers[attributes.get('style', 'table')]