--- loncom/auth/loncacc.pm 2000/12/25 12:44:43 1.12 +++ loncom/auth/loncacc.pm 2000/12/26 19:50:25 1.13 @@ -2,7 +2,7 @@ # Cookie Based Access Handler for Construction Area # (lonacc: 5/21/99,5/22,5/29,5/31 Gerd Kortemeyer) # 6/15,16/11,22/11, -# 01/06,01/11,6/1,9/25,9/28,11/22,12/25 Gerd Kortemeyer +# 01/06,01/11,6/1,9/25,9/28,11/22,12/25,12/26 Gerd Kortemeyer package Apache::loncacc; @@ -78,11 +78,13 @@ sub handler { if ($lines[$i]=~/^$contentsep/) { if ($name) { chomp($value); - $ENV{"form.$name"}=$value; if ($fname) { $ENV{"form.$name.filename"}=$fname; $ENV{"form.$name.mimetype"}=$fmime; + } else { + $value=~s/\s+$//s; } + $ENV{"form.$name"}=$value; } if ($i<$#lines) { $i++;