SRCMS V2.0.1开发版

修复 荣誉榜排行顺序问题
修复 站点名称和简介无法配置的问题
修复 荣誉榜团队无法编辑的问题
删除 Ueditor存在漏洞的截屏插件
This commit is contained in:
Martin Zhou
2017-05-31 23:03:37 +08:00
parent 382cddf85f
commit 8e5953cae3
24 changed files with 403 additions and 184 deletions

View File

@@ -21,9 +21,11 @@ class IndexController extends Controller{
$title = $tmodel->where('id=1')->select();
$hall = $model->order('id DESC')->select();
$advisories = $amodel -> select();
$settings = $tmodel -> where('id=1') -> select();
$this->assign('model', $hall);
$this->assign('title', $title);
$this->assign('advisories', $advisories);
$this->assign('settings', $settings);
$this->display();
}
}