Skip to content

Commit

Permalink
forum MDL-20739 Fixed bad conversion of html_select component
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Hemelryk committed Nov 4, 2009
1 parent 6fe0605 commit 93b026e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/outputrenderers.php
Original file line number Diff line number Diff line change
Expand Up @@ -1664,7 +1664,7 @@ public function select($select) {
$attributes['disabled'] = 'disabled';
}
if ($select->tabindex) {
$attributes['tabindex'] = $tabindex;
$attributes['tabindex'] = $select->tabindex;
}

if ($select->rendertype == 'menu' && $select->listbox) {
Expand Down

0 comments on commit 93b026e

Please sign in to comment.