Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove some deprecated form code.
  • Loading branch information
perlDreamer committed Nov 24, 2011
1 parent dbc8408 commit f4b248f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/WebGUI/Form/SelectList.pm
Expand Up @@ -134,7 +134,7 @@ sub toHtml {
$output .= '>'.$options->{$key}.'</option>';
}
$output .= '</select>'."\n";
$output .= WebGUI::Form::Hidden($session, { name => $self->privateName('isIn'), value => 1, });
$output .= WebGUI::Form::Hidden->new($session, { name => $self->privateName('isIn'), value => 1, })->toHtml;
return $output;
}

Expand Down

0 comments on commit f4b248f

Please sign in to comment.