renamed the form fields to upper case for proper perl style

This commit is contained in:
JT Smith 2005-08-23 15:58:55 +00:00
parent 0f9c9badd9
commit 3e587762be
42 changed files with 4753 additions and 16 deletions

View file

@ -152,7 +152,7 @@ B<NOTE:> This uses the same syntax of the WebGUI::Form::hidden() method.
sub hidden {
my $self = shift;
my $params = shift;
$self->{_hidden} .= WebGUI::Form::hidden($params);
$self->{_hidden} .= WebGUI::Form::Hidden($params);
}
@ -263,7 +263,7 @@ B<NOTE:> This uses the same syntax of the WebGUI::Form::submit() method.
sub submit {
my $self = shift;
my $submit = shift;
$self->{_submit} = WebGUI::Form::submit($submit);
$self->{_submit} = WebGUI::Form::Submit($submit);
}