From: Mike G. v. a. <we...@ma...> - 2005-07-28 15:22:59
|
Log Message: ----------- Added a missing start_form and hidden authentication. These had been dropped in a recent revision. This closes bug #806 Modified Files: -------------- webwork-modperl/lib/WeBWorK/ContentGenerator: ProblemSets.pm Revision Data ------------- Index: ProblemSets.pm =================================================================== RCS file: /webwork/cvs/system/webwork-modperl/lib/WeBWorK/ContentGenerator/ProblemSets.pm,v retrieving revision 1.59 retrieving revision 1.60 diff -Llib/WeBWorK/ContentGenerator/ProblemSets.pm -Llib/WeBWorK/ContentGenerator/ProblemSets.pm -u -r1.59 -r1.60 --- lib/WeBWorK/ContentGenerator/ProblemSets.pm +++ lib/WeBWorK/ContentGenerator/ProblemSets.pm @@ -177,7 +177,11 @@ my $statusHeader = $sort eq "status" ? CGI::u("Status") : CGI::a({href=>$self->systemLink($urlpath, params=>{sort=>"status"})}, "Status"); +# print the start of the form + print CGI::start_form(-method=>"POST",-action=>$actionURL), + $self->hidden_authen_fields; + # and send the start of the table print CGI::start_table(); if ( ! $existVersions ) { |