]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Merge from Branch fop-0_91:
authorJeremias Maerki <jeremias@apache.org>
Fri, 23 Dec 2005 23:33:38 +0000 (23:33 +0000)
committerJeremias Maerki <jeremias@apache.org>
Fri, 23 Dec 2005 23:33:38 +0000 (23:33 +0000)
Relaxed validation for empty static-content for compatibility with 0.20.5.

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

src/java/org/apache/fop/fo/pagination/StaticContent.java

index 5278db92ba3a12cf2abab370fd3e241716589517..3c9841725ae614bcb9e4386129f56e32c8239042 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 1999-2004 The Apache Software Foundation.
+ * Copyright 1999-2005 The Apache Software Foundation.
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -54,7 +54,7 @@ public class StaticContent extends Flow {
      * @see org.apache.fop.fo.FONode#endOfNode
      */
     protected void endOfNode() throws FOPException {
-        if (childNodes == null) {
+        if (childNodes == null && getUserAgent().validateStrictly()) {
             missingChildElementError("(%block;)+");
         }
         getFOEventHandler().endFlow(this);