Diff for /loncom/cgi/loncgi.pm between versions 1.4 and 1.7

version 1.4, 2005/05/03 22:22:47 version 1.7, 2006/05/18 14:24:06
Line 52  package LONCAPA::loncgi; Line 52  package LONCAPA::loncgi;
 use strict;  use strict;
 use warnings FATAL=>'all';  use warnings FATAL=>'all';
 no warnings 'uninitialized';  no warnings 'uninitialized';
 use vars qw(%env);  
   
   use lib '/home/httpd/lib/perl/';
 use CGI();  use CGI();
 use CGI::Cookie();  use CGI::Cookie();
 use Fcntl qw(:flock);  use Fcntl qw(:flock);
   use LONCAPA;
 use LONCAPA::Configuration();  use LONCAPA::Configuration();
 require Exporter;  
   
 #our @ISA = qw (Exporter);  
 #our @EXPORT = qw(%env);  
   
 my $lonidsdir;  my $lonidsdir;
   
Line 155  sub transfer_profile_to_env { Line 152  sub transfer_profile_to_env {
     }      }
     foreach my $envrow (@profile) {      foreach my $envrow (@profile) {
         chomp($envrow);          chomp($envrow);
         my ($envname,$envvalue)=split(/=/,$envrow);          my ($envname,$envvalue)=split(/=/,$envrow,2);
    $envname  = &unescape($envname);
    $envvalue = &unescape($envvalue);
         $Apache::lonnet::env{$envname} = $envvalue;          $Apache::lonnet::env{$envname} = $envvalue;
     }      }
     $Apache::lonnet::env{'user.environment'} = "$lonidsdir/$handle.id";      $Apache::lonnet::env{'user.environment'} = "$lonidsdir/$handle.id";
Line 165  sub transfer_profile_to_env { Line 164  sub transfer_profile_to_env {
 #############################################  #############################################
 #############################################  #############################################
   
   
 =pod  =pod
   
 =back  =back

Removed from v.1.4  
changed lines
  Added in v.1.7


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>