Log Message:
-----------
Gateway update: make display of test time in Student Progress default to yes
Tags:
----
rel-2-1-a1
Modified Files:
--------------
webwork2/lib/WeBWorK/ContentGenerator/Instructor:
StudentProgress.pm
Revision Data
-------------
Index: StudentProgress.pm
===================================================================
RCS file: /webwork/cvs/system/webwork2/lib/WeBWorK/ContentGenerator/Instructor/StudentProgress.pm,v
retrieving revision 1.4.2.6
retrieving revision 1.4.2.7
diff -Llib/WeBWorK/ContentGenerator/Instructor/StudentProgress.pm -Llib/WeBWorK/ContentGenerator/Instructor/StudentProgress.pm -u -r1.4.2.6 -r1.4.2.7
--- lib/WeBWorK/ContentGenerator/Instructor/StudentProgress.pm
+++ lib/WeBWorK/ContentGenerator/Instructor/StudentProgress.pm
@@ -308,7 +308,7 @@
# the returning parameter lets us set defaults for versioned sets
my $ret = $r->param('returning');
$showColumns{'date'} = $ret ? $r->param('show_date') : 1;
- $showColumns{'testtime'} = $ret ? $r->param('show_testtime') : 0;
+ $showColumns{'testtime'} = $ret ? $r->param('show_testtime') : 1;
$showColumns{'index'} = $ret ? $r->param('show_index') : 0;
$showColumns{'problems'} = $ret ? $r->param('show_problems') : 0;
$showColumns{'section'} = $ret? $r->param('show_section') : 0;
|