--- loncom/interface/lonhtmlcommon.pm 2005/06/18 18:51:50 1.110 +++ loncom/interface/lonhtmlcommon.pm 2005/08/05 18:14:40 1.111 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # a pile of common html routines # -# $Id: lonhtmlcommon.pm,v 1.110 2005/06/18 18:51:50 www Exp $ +# $Id: lonhtmlcommon.pm,v 1.111 2005/08/05 18:14:40 www Exp $ # # Copyright Michigan State University Board of Trustees # @@ -100,7 +100,7 @@ sub store_recent { my ($area,$name,$value)=@_; my $file=&recent_filename($area); my %recent=&Apache::lonnet::dump($file); - if (scalar(keys(%recent))>10) { + if (scalar(keys(%recent))>20) { # remove oldest value my $oldest=time; my $delkey='';