|
$comp->setHtmlAttribute('maxlength', $cols); |
The $cols variable, which defines the visual width (columns) of the input field, is currently being used to set the maxlength HTML attribute.
This will result in the maximum length of the input field being determined by its visual width instead of the intended $maxLength value.
forms-bootstrap/src/Traits/BootstrapContainerTrait.php
Line 323 in d5ea03a
The $cols variable, which defines the visual width (columns) of the input field, is currently being used to set the maxlength HTML attribute.
This will result in the maximum length of the input field being determined by its visual width instead of the intended $maxLength value.