--- loncom/interface/loncommon.pm 2005/04/07 08:15:41 1.259 +++ loncom/interface/loncommon.pm 2005/04/22 20:50:07 1.260 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # a pile of common routines # -# $Id: loncommon.pm,v 1.259 2005/04/07 08:15:41 albertel Exp $ +# $Id: loncommon.pm,v 1.260 2005/04/22 20:50:07 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -2975,8 +2975,9 @@ sub get_posted_cgi { my $r=shift; my $buffer; - - $r->read($buffer,$r->header_in('Content-length'),0); + if ($r->header_in('Content-length')) { + $r->read($buffer,$r->header_in('Content-length'),0); + } unless ($buffer=~/^(\-+\w+)\s+Content\-Disposition\:\s*form\-data/si) { my @pairs=split(/&/,$buffer); my $pair;