Skip to content
This repository was archived by the owner on Sep 23, 2024. It is now read-only.

Commit

Permalink
Fixed missing closing parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebronner committed Mar 30, 2016
1 parent 6c9f052 commit 66ce205
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/FormBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ protected function postHtml($name, array $options, $extraElement = null, $extraW
}

if (array_key_exists('description', $options)) {
$helpClass = ($this->framework === 'bootstrap-3' ? 'help-block' : '';
$helpClass = ($this->framework === 'bootstrap-3' ? 'help-block' : '');
$html .= '<small class="text-muted' . $helpClass . '">' . $options['description'] . '</small>';
}

Expand Down

0 comments on commit 66ce205

Please sign in to comment.