From: Mischa POSLAWSKY Date: Wed, 28 May 2008 10:23:50 +0000 (+0000) Subject: do not import parent module in PLP::Backend::FastCGI X-Git-Tag: 3.20~4 X-Git-Url: http://git.shiar.nl/perl/plp/.git/commitdiff_plain/fcb21b1e9390fe5a9b0cf69292e9025be6be47a9 do not import parent module in PLP::Backend::FastCGI 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). --- diff --git a/lib/PLP/Backend/FastCGI.pm b/lib/PLP/Backend/FastCGI.pm index 8594a85..b3c8c3a 100644 --- a/lib/PLP/Backend/FastCGI.pm +++ b/lib/PLP/Backend/FastCGI.pm @@ -2,7 +2,7 @@ package PLP::Backend::FastCGI; use strict; -use PLP::Backend::CGI; +use PLP::Backend::CGI (); use FCGI; use base 'PLP::Backend::CGI';