From: Mike G. v. a. <we...@ma...> - 2005-12-29 01:44:07
|
Log Message: ----------- Fixed error in POST url which caused user and key to become multiply defined. This may also cure some other anomolies such as the can't call method "psvn" without a package or object error because that error sometimes included a reference to the key. ??? Not sure about this part, but it definitely causes the multiple user and key definition. Modified Files: -------------- webwork-modperl/lib/WeBWorK/ContentGenerator/Instructor: ProblemSetDetail.pm Revision Data ------------- Index: ProblemSetDetail.pm =================================================================== RCS file: /webwork/cvs/system/webwork-modperl/lib/WeBWorK/ContentGenerator/Instructor/ProblemSetDetail.pm,v retrieving revision 1.31 retrieving revision 1.32 diff -Llib/WeBWorK/ContentGenerator/Instructor/ProblemSetDetail.pm -Llib/WeBWorK/ContentGenerator/Instructor/ProblemSetDetail.pm -u -r1.31 -r1.32 --- lib/WeBWorK/ContentGenerator/Instructor/ProblemSetDetail.pm +++ lib/WeBWorK/ContentGenerator/Instructor/ProblemSetDetail.pm @@ -1067,7 +1067,7 @@ my $setDetailPage = $urlpath -> newFromModule($urlpath->module, courseID => $courseID, setID => $setID); - my $setDetailURL = $self->systemLink($setDetailPage); + my $setDetailURL = $self->systemLink($setDetailPage, authen=>0); my $userCountMessage = CGI::a({href=>$editUsersAssignedToSetURL}, $self->userCountMessage($setUserCount, $userCount)); @@ -1099,7 +1099,7 @@ CGI::td([ "Editing problem set ".CGI::strong($setID)." data for these individual students:".CGI::br(). CGI::strong(join CGI::br(), @userLinks), - CGI::a({href=>$setDetailURL },"Edit set ".CGI::strong($setID)." data for ALL students assigned to this set."), + CGI::a({href=>$self->systemLink($setDetailPage) },"Edit set ".CGI::strong($setID)." data for ALL students assigned to this set."), ]) ) |