From: Sam H. v. a. <we...@ma...> - 2005-10-08 22:21:19
|
Log Message: ----------- fix for bug 815 "Emphasize set name on the Assign users to Set page (set detail page)" Modified Files: -------------- webwork2/lib/WeBWorK: URLPath.pm webwork2/lib/WeBWorK/ContentGenerator/Instructor: UsersAssignedToSet.pm Revision Data ------------- Index: URLPath.pm =================================================================== RCS file: /webwork/cvs/system/webwork2/lib/WeBWorK/URLPath.pm,v retrieving revision 1.26 retrieving revision 1.27 diff -Llib/WeBWorK/URLPath.pm -Llib/WeBWorK/URLPath.pm -u -r1.26 -r1.27 --- lib/WeBWorK/URLPath.pm +++ lib/WeBWorK/URLPath.pm @@ -300,7 +300,7 @@ display => 'WeBWorK::ContentGenerator::Instructor::ProblemSetDetail', }, instructor_users_assigned_to_set => { - name => 'Users Assigned to Set', + name => 'Users Assigned to Set $setID', parent => 'instructor_set_detail', kids => [ qw// ], match => qr|^users/|, Index: UsersAssignedToSet.pm =================================================================== RCS file: /webwork/cvs/system/webwork2/lib/WeBWorK/ContentGenerator/Instructor/UsersAssignedToSet.pm,v retrieving revision 1.19 retrieving revision 1.20 diff -Llib/WeBWorK/ContentGenerator/Instructor/UsersAssignedToSet.pm -Llib/WeBWorK/ContentGenerator/Instructor/UsersAssignedToSet.pm -u -r1.19 -r1.20 --- lib/WeBWorK/ContentGenerator/Instructor/UsersAssignedToSet.pm +++ lib/WeBWorK/ContentGenerator/Instructor/UsersAssignedToSet.pm @@ -98,7 +98,6 @@ return $pathSetName; } - sub body { my ($self) = @_; my $r = $self->r; @@ -127,7 +126,7 @@ "There is NO undo for unassigning students. "), CGI::p("When you unassign by unchecking a student's name, you destroy all - of the data for homework set $setID for this student. You will then need to + of the data for homework set ".CGI::b($setID)." for this student. You will then need to reassign the set to these students and they will receive new versions of the problems. Make sure this is what you want to do before unchecking students." ); |