Skip to content

Commit

Permalink
cs
Browse files Browse the repository at this point in the history
  • Loading branch information
Quy committed Jul 10, 2021
1 parent 07b2aab commit 54c78ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion layouts/joomla/form/field/textarea.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
!empty($autocomplete) ? 'autocomplete="' . $autocomplete . '"' : '',
$autofocus ? 'autofocus' : '',
$spellcheck ? '' : 'spellcheck="false"',
$maxlength ? (is_numeric($maxlength) ? ' maxlength="' . $maxlength . '"' : $maxlength) : '',
$maxlength ? (is_numeric($maxlength) ? 'maxlength="' . $maxlength . '"' : $maxlength) : '',
!empty($counterlabel) ? $counterlabel : '',
$dataAttribute,
);
Expand Down

0 comments on commit 54c78ce

Please sign in to comment.