You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2006/01/13 14:29:32 UTC

svn commit: r368710 - /httpd/test/trunk/perl-framework/t/modules/info.t

Author: jorton
Date: Fri Jan 13 05:29:30 2006
New Revision: 368710

URL: http://svn.apache.org/viewcvs?rev=368710&view=rev
Log:
Fix for mod_imap masquerading as mod_imagemap.

Submitted by: Martin Mrazik <mmrazik suse.cz>

Modified:
    httpd/test/trunk/perl-framework/t/modules/info.t

Modified: httpd/test/trunk/perl-framework/t/modules/info.t
URL: http://svn.apache.org/viewcvs/httpd/test/trunk/perl-framework/t/modules/info.t?rev=368710&r1=368709&r2=368710&view=diff
==============================================================================
--- httpd/test/trunk/perl-framework/t/modules/info.t (original)
+++ httpd/test/trunk/perl-framework/t/modules/info.t Fri Jan 13 05:29:30 2006
@@ -21,7 +21,9 @@
     if ($_ =~ /<a name=\"(\w+\.c)\">/) {
         if ($1 eq 'util_ldap.c') {
             push(@actual,'mod_ldap.c');
-        } else {        
+        } elsif ($1 eq 'mod_imap.c') {        
+            push(@actual, 'mod_imagemap.c');
+        } else {
             push(@actual, $1);
         }
     }