X-Git-Url: http://git.shiar.net/perl/plp/.git/blobdiff_plain/68a18bf55edfd520ec9853550b6d718bfb272788..7f913ac37060cadb76782acdc0a2df30484c40c2:/PLP/CGI.pm diff --git a/PLP/CGI.pm b/PLP/CGI.pm index 817a552..1f46a3c 100644 --- a/PLP/CGI.pm +++ b/PLP/CGI.pm @@ -65,11 +65,15 @@ sub read ($) { return $data; } -# This is run by the CGI script. (#!perl \n use PLP::CGI; PLP::CGI::everything;) sub everything { PLP::clean(); $_[0]->init() and PLP::start(); } +# This is run by the CGI script. (#!perl \n use PLP::CGI;) +sub import { + $_[0]->everything(); +} + 1;