converting WebGUI::Form API to use new session system
This commit is contained in:
parent
9520b4ce48
commit
2599a4c853
28 changed files with 199 additions and 181 deletions
|
|
@ -117,7 +117,7 @@ sub getCategories {
|
|||
sub getCompareForm {
|
||||
my $self = shift;
|
||||
my @ids = @_;
|
||||
my $form = WebGUI::Form::formHeader({action=>$self->getUrl})
|
||||
my $form = WebGUI::Form::formHeader($self->session,{action=>$self->getUrl})
|
||||
.WebGUI::Form::submit({
|
||||
value=>"compare"
|
||||
})
|
||||
|
|
@ -804,7 +804,7 @@ sub www_search {
|
|||
}
|
||||
}
|
||||
$var{'compare.form'} = $self->getCompareForm(@list);
|
||||
$var{'form.header'} = WebGUI::Form::formHeader({action=>$self->getUrl})
|
||||
$var{'form.header'} = WebGUI::Form::formHeader($self->session,{action=>$self->getUrl})
|
||||
.WebGUI::Form::hidden({
|
||||
name=>"doit",
|
||||
value=>"1"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue