From d2bbc9adaf93f588e45959aff4f52ed73f4b08a6 Mon Sep 17 00:00:00 2001 From: mdipierro Date: Thu, 16 Aug 2012 09:39:51 -0500 Subject: [PATCH] added missing _id, thanks Paolo Valleri --- VERSION | 2 +- gluon/sqlhtml.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index e1215964..591e9167 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.00.0 (2012-08-16 09:38:42) dev +Version 2.00.0 (2012-08-16 09:39:49) dev diff --git a/gluon/sqlhtml.py b/gluon/sqlhtml.py index d3cbf256..34de2233 100644 --- a/gluon/sqlhtml.py +++ b/gluon/sqlhtml.py @@ -697,7 +697,7 @@ def formstyle_bootstrap(form, fields): _help = DIV(help, _class='help-block') # embed _help into _controls don't wrap label _controls = DIV(controls, _help, _class='controls') - table.append(DIV(label, _controls, _class='control-group')) + table.append(DIV(label, _controls, _class='control-group',_id=id)) return table class SQLFORM(FORM):