Merge branch 'master' of http://git.tensent.cn/molong/sentcms
This commit is contained in:
@@ -38,10 +38,9 @@ composer install
|
|||||||
|
|
||||||
## 交流讨论
|
## 交流讨论
|
||||||
|
|
||||||
> * 点击链接加入2群【sentcms网站管理系统2群】:https://jq.qq.com/?_wv=1027&k=5ewmZ0w
|
> * 点击链接加入圈子:http://bbs.sentcms.com
|
||||||
|
|
||||||
> * 点击链接加入1群【SentCMS交流群】:http://jq.qq.com/?_wv=1027&k=2DXSKpe(已满) 勿加
|
|
||||||
|
|
||||||
|
[](http://bbs.sentcms.com)
|
||||||
|
|
||||||
## SentCMS特性包括:
|
## SentCMS特性包括:
|
||||||
* 全新的路由体系,完美的路由解决方案
|
* 全新的路由体系,完美的路由解决方案
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ class MemberLog extends Model {
|
|||||||
|
|
||||||
public static function record($request) {
|
public static function record($request) {
|
||||||
$data = [
|
$data = [
|
||||||
'uid' => $request->user['uid'] ? $request->user['uid'] : 0,
|
'uid' => isset($request->user['uid']) ? $request->user['uid'] : 0,
|
||||||
'title' => self::getCurrentTitle($request),
|
'title' => self::getCurrentTitle($request),
|
||||||
'url' => $request->baseUrl(),
|
'url' => $request->baseUrl(),
|
||||||
'param' => $request->param(),
|
'param' => $request->param(),
|
||||||
|
|||||||
BIN
qrcode.png
Normal file
BIN
qrcode.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 5.6 KiB |
@@ -613,7 +613,7 @@ CREATE TABLE `sent_model` (
|
|||||||
`create_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '创建时间',
|
`create_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '创建时间',
|
||||||
`update_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间',
|
`update_time` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '更新时间',
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`id`)
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='文档模型表';
|
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='文档模型表';
|
||||||
|
|
||||||
#
|
#
|
||||||
# Structure for table "sent_rewrite"
|
# Structure for table "sent_rewrite"
|
||||||
|
|||||||
Reference in New Issue
Block a user