more missing session variables in form calls

This commit is contained in:
Colin Kuskie 2006-01-17 05:20:26 +00:00
parent 25ed7e1527
commit 2e5f5c6038
4 changed files with 34 additions and 34 deletions

View file

@ -114,16 +114,16 @@ sub getCompareForm {
my $self = shift;
my @ids = @_;
my $form = WebGUI::Form::formHeader($self->session,{action=>$self->getUrl})
.WebGUI::Form::submit({
.WebGUI::Form::submit($self->session, {
value=>"compare"
})
."<br />"
."<br />"
.WebGUI::Form::hidden({
.WebGUI::Form::hidden($self->session, {
name=>"func",
value=>"compare"
})
.WebGUI::Form::checkList({
.WebGUI::Form::checkList($self->session, {
name=>"listingId",
vertical=>1,
value=>\@ids,