Skip to content

Commit

Permalink
Merge pull request #114 from clemir/bug-fix
Browse files Browse the repository at this point in the history
Remove undefined variable
  • Loading branch information
clemir committed Jan 23, 2019
2 parents 4a6347f + 679caca commit 7ef7928
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FormBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public function radios($name, $options = array(), $selected = null, $attributes

return $this->theme->render(
$template,
compact('name', 'radios', 'attributes', 'classes', 'hasErrors'),
compact('name', 'radios', 'attributes', 'hasErrors'),
$defaultTemplate
);
}
Expand Down

0 comments on commit 7ef7928

Please sign in to comment.