jorton      2004/10/20 06:26:44

  Modified:    perl-framework/t/modules info.t
  Log:
  The PHP module should now always have the correct name in ->{modules}.
  
  Revision  Changes    Path
  1.6       +1 -3      httpd-test/perl-framework/t/modules/info.t
  
  Index: info.t
  ===================================================================
  RCS file: /home/cvs/httpd-test/perl-framework/t/modules/info.t,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -d -w -u -r1.5 -r1.6
  --- info.t    4 Aug 2004 15:44:09 -0000       1.5
  +++ info.t    20 Oct 2004 13:26:44 -0000      1.6
  @@ -19,9 +19,7 @@
   ## extract module names from html ##
   foreach (split /\n/, $info) {
       if ($_ =~ /<a name=\"(\w+\.c)\">/) {
  -        if ($1 eq 'sapi_apache2.c') { # why does php do this?
  -            push(@actual,'mod_php4.c');
  -        } elsif ($1 eq 'util_ldap.c') {
  +        if ($1 eq 'util_ldap.c') {
               push(@actual,'mod_ldap.c');
           } else {        
               push(@actual, $1);
  
  
  

Reply via email to