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 Aug 8, 2024
2 parents 2dbb7b0 + c4701fc commit 7477623
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 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.202406.c"
version = "V5.202406.d"

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 @@ -21,7 +21,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.202406.c</version.publiccms>
<version.publiccms>V5.202406.d</version.publiccms>
<!-- https://mvnrepository.com/artifact/jakarta.servlet/jakarta.servlet-api -->
<version.servlet>6.1.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 @@ -38,7 +38,7 @@ public static final String getVersion() {
* @return revision
*/
public static final String getRevision() {
return "c";
return "d";
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@
</#if>
</script>
<#if a?has_content>
<textarea name="content" class="hide"><@tools.fileContent path=path>${(object)!}</@tools.fileContent></textarea>
<textarea name="content" class="hide" escape="true"><@tools.fileContent path=path>${(object)!}</@tools.fileContent></textarea>
<script>
<#if site.useStatic&&(a.publishPath)?has_content>
$('input[name=useStatic]',navTab.getCurrentPanel()).click();
Expand All @@ -235,7 +235,7 @@
</#if>
</script>
<#elseif demo?has_content>
<textarea name="content" class="hide"><@html_escape><#include "demo/"+demo parse=false/></@html_escape></textarea>
<textarea name="content" class="hide" escape="true"><@html_escape><#include "demo/"+demo parse=false/></@html_escape></textarea>
<script>
<#if name?has_content>
$('input[name=alias]',navTab.getCurrentPanel()).val('<@t.page name/>');
Expand Down

0 comments on commit 7477623

Please sign in to comment.