Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=51518
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 19 Jul 2011 11:41:08 +0000 (11:41 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 19 Jul 2011 11:41:08 +0000 (11:41 +0000)
Correct error in web.xml parsing rules for the <others/> tag when using absolute ordering.

git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1148277 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/startup/WebRuleSet.java
webapps/docs/changelog.xml

index 5cd206e..7521002 100644 (file)
@@ -180,7 +180,7 @@ public class WebRuleSet extends RuleSetBase {
                     new RelativeOrderingRule());
             digester.addCallMethod(fullPrefix + "/absolute-ordering/name",
                                    "addAbsoluteOrdering", 0);
-            digester.addCallMethod(fullPrefix + "/absolute-ordering/name/others",
+            digester.addCallMethod(fullPrefix + "/absolute-ordering/others",
                                    "addAbsoluteOrderingOthers");
         }
 
index db9b4e9..f913a84 100644 (file)
         caused tomcat-jdbc.jar and commons-beanutils*.jar to be not
         ignored when scanning jars for tag libraries. (kkolinko)
       </fix>
+      <fix>
+        <bug>51518</bug>: Correct error in web.xml parsing rules for the
+        &lt;others/&gt; tag when using absolute ordering. (markt)
+      </fix>
     </changelog>
   </subsection>
   <subsection name="Coyote">