do not import parent module in PLP::Backend::FastCGI
authorMischa POSLAWSKY <perl@shiar.org>
Wed, 28 May 2008 10:23:50 +0000 (10:23 +0000)
committerMischa POSLAWSKY <perl@shiar.org>
Wed, 28 May 2008 10:49:47 +0000 (10:49 +0000)
FastCGI initialized normal CGI as well, providing unneeded CGI support.
Apparantly it's not in the way, but wrong nonetheless (and quite
confusing to be able to use the fastcgi module with cgi).

lib/PLP/Backend/FastCGI.pm

index 8594a852d7690de911bc1f16b28a087e99707fc0..b3c8c3a3dc84852c9a0b7385f99d9293746429a9 100644 (file)
@@ -2,7 +2,7 @@ package PLP::Backend::FastCGI;
 
 use strict;
 
 
 use strict;
 
-use PLP::Backend::CGI;
+use PLP::Backend::CGI ();
 use FCGI;
 use base 'PLP::Backend::CGI';
 
 use FCGI;
 use base 'PLP::Backend::CGI';