Skip to content

Commit

Permalink
Merge pull request #1983 from tbob18/patch-1
Browse files Browse the repository at this point in the history
Invalid attribute name character
  • Loading branch information
trob authored Mar 23, 2018
2 parents a4db5ce + ad91497 commit 1ba9e7f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

$d = $displayData;
$multiple = $d->multiple ? 'multiple' : '';
$multisize = $d->multisize === '' ? '' : 'size="' . $d->multisize . '""';
$multisize = $d->multisize === '' ? '' : 'size="' . $d->multisize . '"';
?>

<select name="<?php echo $d->name ?>" id="<?php echo $d->id ?>" <?php echo $multiple; ?>
Expand Down

0 comments on commit 1ba9e7f

Please sign in to comment.