Fix bounds mode handling.

This commit is contained in:
David Molineus
2015-01-27 11:43:19 +01:00
parent a399004988
commit 9e0fe6a0b6
5 changed files with 8 additions and 6 deletions

View File

@@ -198,7 +198,7 @@ $GLOBALS['TL_DCA']['tl_leaflet_marker'] = array
'exclude' => true,
'inputType' => 'text',
'eval' => array('mandatory' => false, 'maxlength' => 255, 'tl_class' => 'w50'),
'sql' => "DECIMAL(10, 8)"
'sql' => "decimal(10,8) NULL"
),
'longitude' => array
(
@@ -206,7 +206,7 @@ $GLOBALS['TL_DCA']['tl_leaflet_marker'] = array
'exclude' => true,
'inputType' => 'text',
'eval' => array('mandatory' => false, 'maxlength' => 255, 'tl_class' => 'w50'),
'sql' => "DECIMAL(11, 8)"
'sql' => "decimal(11,8) NULL"
),
'altitude' => array
(