Skip to content

Commit

Permalink
Remove duplicate class="custom-select" (#20196)
Browse files Browse the repository at this point in the history
  • Loading branch information
Quy authored and laoneo committed Jul 16, 2018
1 parent 68448c3 commit db28079
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/cms/html/select.php
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ public static function groupedlist($data, $name, $options = array())

$baseIndent = str_repeat($options['format.indent'], $options['format.depth']++);
$html = $baseIndent . '<select' . ($id !== '' ? ' id="' . $id . '"' : '')
. ' name="' . $name . '"' . $attribs . ' class="custom-select">' . $options['format.eol'];
. ' name="' . $name . '"' . $attribs . '>' . $options['format.eol'];
$groupIndent = str_repeat($options['format.indent'], $options['format.depth']++);

foreach ($data as $dataKey => $group)
Expand Down

0 comments on commit db28079

Please sign in to comment.