diff --git a/CHANGELOG.md b/CHANGELOG.md index 773d6d48..c6d330de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) ### 更新 diff --git a/app/Http/Admin/Views/public/login.volt b/app/Http/Admin/Views/public/login.volt index 3e6f7e25..0e254821 100644 --- a/app/Http/Admin/Views/public/login.volt +++ b/app/Http/Admin/Views/public/login.volt @@ -99,13 +99,9 @@ {% if captcha.enabled == 1 %} - - {% endif %} {% endblock %} \ No newline at end of file diff --git a/app/Http/Home/Controllers/ArticleController.php b/app/Http/Home/Controllers/ArticleController.php index 91305dac..3fd55101 100644 --- a/app/Http/Home/Controllers/ArticleController.php +++ b/app/Http/Home/Controllers/ArticleController.php @@ -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) {