Skip to content

Commit

Permalink
fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
euromark committed Apr 7, 2014
1 parent 97a8eca commit f331866
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/View/Helper/FormHelper.php
Expand Up @@ -886,7 +886,7 @@ public function input($fieldName, array $options = []) {
protected function _getInput($fieldName, $options) {
switch ($options['type']) {
case 'select':
$opts = $options['options'];
$opts = (array)$options['options'];
unset($options['options']);
return $this->select($fieldName, $opts, $options);
case 'url':
Expand Down

0 comments on commit f331866

Please sign in to comment.