Skip to content

Commit 7a5626c

Browse files
committed
修复后台报错
1 parent bb06a91 commit 7a5626c

40 files changed

+7908
-34367
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
[![Build Status](https://img.shields.io/travis/junicorn/java-china.svg?style=flat-square)](https://travis-ci.org/junicorn/java-china)
44
![Version](https://img.shields.io/badge/version-0.4.1-yellow.svg?style=flat-square)
55
[![License](https://img.shields.io/badge/license-Apache2-4EB1BA.svg?style=flat-square)](https://github.com/junicorn/java-china/blob/master/LICENSE)
6-
[![@biezhi on weibo](https://img.shields.io/badge/weibo-%40biezhi-red.svg?style=flat-square)](http://weibo.com/u/5238733773)
76

87
Java中国是一款开源免费的论坛程序,致力于打造一个简洁优质的Java程序员论坛。
98

src/main/java/com/javachina/controller/admin/IndexController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,8 @@ public ModelAndView show_users(Request request, Response response) {
196196
*/
197197
@Route(value = "settings")
198198
public ModelAndView show_settings(Request request, Response response) {
199-
Map<String, Object> settings = optionsService.getSystemInfo();
200-
request.attribute("settings", settings);
199+
Map<String, Object> options = optionsService.getSystemInfo();
200+
request.attribute("options", options);
201201
return this.getAdminView("settings");
202202
}
203203

0 commit comments

Comments
 (0)