From: Sam H. v. a. <we...@ma...> - 2005-01-28 00:36:27
|
Log Message: ----------- HEAD backport: Fixed double declaration of $user (gage) Tags: ---- rel-2-1-patches Modified Files: -------------- webwork2/lib/WeBWorK/ContentGenerator/Instructor: Assigner.pm Revision Data ------------- Index: Assigner.pm =================================================================== RCS file: /webwork/cvs/system/webwork2/lib/WeBWorK/ContentGenerator/Instructor/Assigner.pm,v retrieving revision 1.25.2.1 retrieving revision 1.25.2.2 diff -Llib/WeBWorK/ContentGenerator/Instructor/Assigner.pm -Llib/WeBWorK/ContentGenerator/Instructor/Assigner.pm -u -r1.25.2.1 -r1.25.2.2 --- lib/WeBWorK/ContentGenerator/Instructor/Assigner.pm +++ lib/WeBWorK/ContentGenerator/Instructor/Assigner.pm @@ -64,7 +64,7 @@ my @Users = $db->getUsers(@userIDs); ## Mark's Edits for filtering my @myUsers; - my $user = $r->param("user"); + my (@viewable_sections, @viewable_recitations); |