Merge pull request #5980 from cakephp/issue-5977

Don't generate maxlength properties for decimal columns.
This commit is contained in:
Mark Story 2015-02-28 16:37:09 -05:00
commit 01d988fa77
2 changed files with 1 additions and 1 deletions

View file

@ -782,7 +782,6 @@ class FormHelperTest extends CakeTestCase {
'type' => 'text',
'name' => 'data[ValidateUser][cost_decimal]',
'id' => 'ValidateUserCostDecimal',
'maxlength' => 6,
)),
'/div'
);

View file

@ -1287,6 +1287,7 @@ class FormHelper extends AppHelper {
isset($fieldDef['length']) &&
is_scalar($fieldDef['length']) &&
$fieldDef['length'] < 1000000 &&
$fieldDef['type'] !== 'decimal' &&
$options['type'] !== 'select'
);
if ($autoLength &&