--- loncom/interface/lonblockingmenu.pm 2012/04/05 01:41:11 1.6 +++ loncom/interface/lonblockingmenu.pm 2012/04/05 21:36:28 1.7 @@ -2,7 +2,7 @@ # Routines for configuring blocking of access to collaborative functions, # and specific resources during an exam # -# $Id: lonblockingmenu.pm,v 1.6 2012/04/05 01:41:11 raeburn Exp $ +# $Id: lonblockingmenu.pm,v 1.7 2012/04/05 21:36:28 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -1181,7 +1181,9 @@ sub convlim { my @toshow; foreach my $cat (@order) { if ($cat eq 'seconds') { - last if ($timelimit <= 0); + if ($timelimit > 0) { + push(@toshow,&mt("[_1] $cat",$timelimit)); + } } elsif ($timelimit >= $catlimits{$cat}) { my $val = int($timelimit/$catlimits{$cat}); if ($val > 0) {