Skip to content

Commit

Permalink
安全漏洞修复 感谢 姜洋-长亭科技
Browse files Browse the repository at this point in the history
  • Loading branch information
sanluan committed Apr 22, 2022
1 parent b6a56e3 commit d8d7626
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 3 deletions.
Binary file modified doc/PublicCMS V4.0 二次开发手册_中文.doc
Binary file not shown.
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 = 'V4.0.202204.a'
version = 'V4.0.202204.b'

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 @@ -22,7 +22,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>V4.0.202204.a</version.publiccms>
<version.publiccms>V4.0.202204.b</version.publiccms>
<!-- http://mvnrepository.com/artifact/org.springframework/spring-core -->
<!-- https://spring.io/projects/spring-framework -->
<version.spring>5.3.19</version.spring>
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 "a";
return "b";
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@ public void execute(RenderHandler handler) throws IOException, Exception {
}
}

@Override
public boolean needAppToken() {
return true;
}

@Autowired
private SysConfigDataService service;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ public void execute(RenderHandler handler) throws IOException, Exception {
}
}

@Override
public boolean needAppToken() {
return true;
}

@Autowired
private SysDatasourceService service;

Expand Down

0 comments on commit d8d7626

Please sign in to comment.