Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into V5
Browse files Browse the repository at this point in the history
  • Loading branch information
sanluan committed Apr 28, 2024
2 parents 8ef0fad + a6806be commit 7dfd5f9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion publiccms-parent/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ subprojects {
apply plugin: "eclipse-wtp"

group = "com.publiccms"
version = "V5.202302.e"
version = "V5.202302.f"

test.enabled = false

Expand Down
2 changes: 1 addition & 1 deletion publiccms-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<maven.compiler.source>${java.version}</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.encoding>UTF-8</maven.compiler.encoding>
<version.publiccms>V5.202302.e</version.publiccms>
<version.publiccms>V5.202302.f</version.publiccms>
<!-- https://mvnrepository.com/artifact/jakarta.servlet/jakarta.servlet-api -->
<version.servlet>6.0.0</version.servlet>
<!-- http://mvnrepository.com/artifact/org.springframework/spring-core -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public static final String getVersion() {
* @return revision
*/
public static final String getRevision() {
return "e";
return "f";
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public Object execute(List<TemplateModel> arguments) throws TemplateModelExcepti
try {
DocumentBuilderFactory dbf = NodeModel.getDocumentBuilderFactory();
dbf.setFeature("http://xml.org/sax/features/external-parameter-entities", false);
dbf.setFeature("http://apache.org/xml/features/disallow-doctype-decl", false);
dbf.setFeature("http://apache.org/xml/features/disallow-doctype-decl", true);
dbf.setFeature("http://xml.org/sax/features/external-general-entities", false);
dbf.setXIncludeAware(false);
dbf.setExpandEntityReferences(false);
Expand Down

0 comments on commit 7dfd5f9

Please sign in to comment.