You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl-cvs@perl.apache.org by do...@apache.org on 2003/01/11 02:54:44 UTC

cvs commit: modperl-2.0/lib/ModPerl TestRun.pm

dougm       2003/01/10 17:54:44

  Modified:    lib/ModPerl TestRun.pm
  Log:
  ask super class if we should_load_module for anything other than mod_perl.c
  
  Revision  Changes    Path
  1.8       +1 -1      modperl-2.0/lib/ModPerl/TestRun.pm
  
  Index: TestRun.pm
  ===================================================================
  RCS file: /home/cvs/modperl-2.0/lib/ModPerl/TestRun.pm,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- TestRun.pm	2 Dec 2002 16:22:09 -0000	1.7
  +++ TestRun.pm	11 Jan 2003 01:54:44 -0000	1.8
  @@ -19,7 +19,7 @@
   sub should_load_module {
       my($self, $name) = @_;
   
  -    $name eq 'mod_perl.c' ? 0 : 1;
  +    $name eq 'mod_perl.c' ? 0 : $self->SUPER::should_load_module($name);
   }
   
   1;