[otrs-cvs] CVS: otrs/scripts apache2-perl-startup.pl,1.7,1.8

cvs-log at otrs.org cvs-log at otrs.org
Wed Apr 28 10:21:33 CEST 2004


Update of /home/cvs/otrs/scripts
In directory esanta:/tmp/cvs-serv32581/scripts

Modified Files:
	apache2-perl-startup.pl 
Log Message:
replaced GATEWAY_INTERFACE with MOD_PERL because $ENV{GATEWAY_INTERFACE} is deprecated for mod_perl2

Index: apache2-perl-startup.pl
===================================================================
RCS file: /home/cvs/otrs/scripts/apache2-perl-startup.pl,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** apache2-perl-startup.pl	28 Apr 2004 07:10:07 -0000	1.7
--- apache2-perl-startup.pl	28 Apr 2004 07:21:31 -0000	1.8
***************
*** 3,7 ****
  
  # make sure we are in a sane environment.
! $ENV{GATEWAY_INTERFACE} =~ /^CGI-Perl/ or die "GATEWAY_INTERFACE not Perl!";
  
  # --
--- 3,9 ----
  
  # make sure we are in a sane environment.
! #$ENV{GATEWAY_INTERFACE} =~ /^CGI-Perl/ or die "GATEWAY_INTERFACE not Perl!";
! # check $ENV{MOD_PERL}, $ENV{GATEWAY_INTERFACE} is deprecated for mod_perl2
! $ENV{MOD_PERL} =~ /mod_perl/ or die "MOD_PERL not used!";
  
  # --



More information about the cvs-log mailing list