1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-08-01 20:39:06 +08:00

v1.3.8发布

This commit is contained in:
koogua 2021-07-11 16:12:50 +08:00
parent 9b22fd6656
commit a41137580d
3 changed files with 22 additions and 11 deletions

View File

@ -1,3 +1,24 @@
### [v1.3.8](https://gitee.com/koogua/course-tencent-cloud/releases/v1.3.8)(2021-07-11)
### 更新
- 更正readme中github仓库信息
- 增加清除点播地址缓存命令
- 若干缓存键名重命名 后台站点名称修改为用户站点名称
- 标签名称比较忽略大小写
- 重新设计前后台登录界面
- 更正后台存储设置中图片样式的参数描述
- 记录逻辑删除后浏览重定向到404
- 修正图文类型的章节markdown解析问题
- 优化文章和提问不必要的标签数据提交
- 图文中图片增加点击放大预览功能
- 各数据结构中增加若干业务字段
- COS存储中去除多余的年月目录结构
- 清理优化css
- 修正直播地址问题
- 修正评论审核路由问题
- 修正取消收藏问题
### [v1.3.7](https://gitee.com/koogua/course-tencent-cloud/releases/v1.3.7)(2021-06-14)
### 更新

View File

@ -99,13 +99,9 @@
</script>
{% if captcha.enabled == 1 %}
<script>
layui.use(['jquery', 'form'], function () {
var $ = layui.jquery;
new TencentCaptcha(
$('#captcha-btn')[0],
$('#captcha-btn').data('app-id'),
@ -118,11 +114,8 @@
}
}
);
});
</script>
{% endif %}
{% endblock %}

View File

@ -103,10 +103,7 @@ class ArticleController extends Controller
$article = $service->handle($id);
if ($article['deleted'] == 1) {
$this->dispatcher->forward([
'controller' => 'error',
'action' => 'show404',
]);
return $this->notFound();
}
if ($article['me']['owned'] == 0) {