Beau E. Cox wrote:
[...]
The module's uses:

  use Apache2;
  use Apache::Session;
  use Apache::RequestRec;
  use Apache::RequestUtil;
  use Apache::Cookie;
  use CGI::Cookie;

BTW, you should not put 'use Apache2' in your modules (especially CPAN ones). They mess up with @INC and some module/app that tries to load this module will suddenly "discover" and use mod_perl 2 instead of mod_perl 1. Users using mod_perl 2.0 already load this module at the server startup, they can't go without it. So no need to load it in your code.


__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com

--
Reporting bugs: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html
List etiquette: http://perl.apache.org/maillist/email-etiquette.html



Reply via email to