--- loncom/interface/lonhtmlcommon.pm 2003/03/10 20:25:00 1.18 +++ loncom/interface/lonhtmlcommon.pm 2003/03/21 15:59:14 1.19 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # a pile of common html routines # -# $Id: lonhtmlcommon.pm,v 1.18 2003/03/10 20:25:00 matthew Exp $ +# $Id: lonhtmlcommon.pm,v 1.19 2003/03/21 15:59:14 matthew Exp $ # # Copyright Michigan State University Board of Trustees # @@ -724,11 +724,15 @@ sub Increment_PrgWin { } else { $time_est .= ' seconds'; } - + my $lasttime = time-$$prog_state{'laststart'}; + if ($lasttime == 1) { + $lasttime = '('.$lasttime.' second for '.$extraInfo.')'; + } else { + $lasttime = '('.$lasttime.' seconds for '.$extraInfo.')'; + } $r->print(''); + ': '.$time_est.' remaining '.$lasttime.'";'.''); $$prog_state{'laststart'}=time; $r->rflush(); }