--- rat/lonratsrv.pm 2005/02/17 09:09:57 1.29 +++ rat/lonratsrv.pm 2005/04/07 06:56:27 1.30 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Server for RAT Maps # -# $Id: lonratsrv.pm,v 1.29 2005/02/17 09:09:57 albertel Exp $ +# $Id: lonratsrv.pm,v 1.30 2005/04/07 06:56:27 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -32,7 +32,7 @@ use strict; use Apache::Constants qw(:common); use Apache::File; use HTML::TokeParser; - +use Apache::lonnet; # ------------------------------------------------------------- From RAT to XML @@ -205,7 +205,7 @@ sub savemap { ($fn=~/\.page(\.tmp)*$/)) { # ------------------------------------------------------------- Deal with input - my @tags=split(/<&>/,$ENV{'form.output'}); + my @tags=split(/<&>/,$env{'form.output'}); my $outstr=''; my $graphdef=0; if ($tags[0] eq 'graphdef<:>yes') { @@ -288,7 +288,7 @@ sub savemap { } $outstr.="\n"; if ($fn=~/^\/*uploaded\/(\w+)\/(\w+)\/(.*)$/) { - $ENV{'form.output'}=$outstr; + $env{'form.output'}=$outstr; my $home=&Apache::lonnet::homeserver($2,$1); my $result=&Apache::lonnet::finishuserfileupload($2,$1,$home, 'output',$3);