--- loncom/interface/loncoursedata.pm 2006/05/30 12:46:09 1.173 +++ loncom/interface/loncoursedata.pm 2006/08/08 19:02:04 1.174 @@ -1,6 +1,6 @@ # The LearningOnline Network with CAPA # -# $Id: loncoursedata.pm,v 1.173 2006/05/30 12:46:09 www Exp $ +# $Id: loncoursedata.pm,v 1.174 2006/08/08 19:02:04 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -3132,6 +3132,9 @@ sub get_classlist { if(((!$end) || $now < $end) && ((!$start) || ($now > $start))) { $status='Active'; } + if(($now < $start) && ((!$end) || $now < $end )) { + $status='Future'; + } $classlist{$student} = [$sdom,$sname,$end,$start,$id,$section,$fullname,$status,$type,$lockedtype]; }