mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 11:06:15 +00:00
Merge pull request #5980 from cakephp/issue-5977
Don't generate maxlength properties for decimal columns.
This commit is contained in:
commit
01d988fa77
2 changed files with 1 additions and 1 deletions
|
@ -782,7 +782,6 @@ class FormHelperTest extends CakeTestCase {
|
|||
'type' => 'text',
|
||||
'name' => 'data[ValidateUser][cost_decimal]',
|
||||
'id' => 'ValidateUserCostDecimal',
|
||||
'maxlength' => 6,
|
||||
)),
|
||||
'/div'
|
||||
);
|
||||
|
|
|
@ -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 &&
|
||||
|
|
Loading…
Add table
Reference in a new issue