--- loncom/interface/lonhtmlcommon.pm 2004/07/16 19:29:26 1.80 +++ loncom/interface/lonhtmlcommon.pm 2004/07/16 19:54:51 1.81 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # a pile of common html routines # -# $Id: lonhtmlcommon.pm,v 1.80 2004/07/16 19:29:26 matthew Exp $ +# $Id: lonhtmlcommon.pm,v 1.81 2004/07/16 19:54:51 matthew Exp $ # # Copyright Michigan State University Board of Trustees # @@ -783,7 +783,7 @@ sub Increment_PrgWin { $str = '1 minute'; } elsif ($min < 10 && $sec > 1) { $str = '[_1] minutes, [_2] seconds'; - } elsif ($min > 10 || $sec < 2) { + } elsif ($min >= 10 || $sec < 2) { $str = '[_1] minutes'; } $time_est = &mt($str,$min,$sec);