Skip to content

Commit 8f2aaf6

Browse files
committed
add: 论坛v2完成
add: 主版本号升级到2.0
1 parent 8072458 commit 8f2aaf6

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,16 @@ http://nutzbook.wendal.net/jars/
1919
* Quartz计划任务集成
2020
* Shiro集成及权限管理
2121
* Ehcache及DaoCache集成
22-
* snakerflow工作流集成(未全部完成)
23-
* 自定义表单(未全部完成)
2422
* redis 集成(配置及拦截器应用)
2523
* sockerio 集成及demo聊天工具
2624
* jetbrick模板集成
2725
* beetl模板集成及应用
2826
* 二维码生成及跨屏登陆
2927
* 声明式系统日志
3028
* 基于socialauth的Oauth登陆(客户端,非服务器端实现)
29+
* 集成极光推送(jpush)
30+
* snakerflow工作流集成(未全部完成)
31+
* 自定义表单(未全部完成)
3132

3233
## 在线演示地址
3334

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>nutzbook</groupId>
55
<artifactId>nutzbook</artifactId>
6-
<version>1.3.2</version>
76
<packaging>war</packaging>
87
<url>https://github.com/wendal/nutz-book-project</url>
98
<properties>
@@ -318,4 +317,5 @@
318317
<version>1.8.3</version>
319318
</dependency>
320319
</dependencies>
320+
<version>2.0.0</version>
321321
</project>

src/net/wendal/nutzbook/module/yvr/YvrModule.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ public Object topic(String id, HttpSession session, @Attr(scope = Scope.SESSION,
177177
topic.setVisitCount((visited == null) ? 0 : visited.intValue());
178178
if (topic.getUserId() == 0)
179179
topic.setUserId(1);
180-
dao.fetchLinks(topic, "author");
180+
topic.setAuthor(fetch_userprofile(topic.getUserId()));
181181
dao.fetchLinks(topic, "replies", Cnd.orderBy().asc("createTime"));
182182
for (TopicReply reply : topic.getReplies()) {
183183
if (reply.getUserId() == 0)

0 commit comments

Comments
 (0)