From e8643628365e4d63661dc363756f6dce73be3ff2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=99=E5=B9=BF=E6=98=8E?= Date: Thu, 26 May 2022 10:48:34 +0800 Subject: [PATCH] * Fix bug #22944. --- module/custom/control.php | 3 ++- module/custom/css/set.zh-cn.css | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/module/custom/control.php b/module/custom/control.php index b9ac2695de..7ba888ca5b 100644 --- a/module/custom/control.php +++ b/module/custom/control.php @@ -145,7 +145,8 @@ class custom extends control $review = fixer::input('post')->get(); if($review->needReview) $data = fixer::input('post')->join('forceNotReview', ',')->remove('forceReview')->get(); if(!$review->needReview) $data = fixer::input('post')->join('forceReview', ',')->remove('forceNotReview')->get(); - if(!isset($data->forceReview)) $data->forceReview = ''; + if(!isset($data->forceReview)) $data->forceReview = ''; + if(!isset($data->forceNotReview)) $data->forceNotReview = ''; $this->loadModel('setting')->setItems("system.$module", $data); $reviewCase = isset($review->reviewCase) ? $review->reviewCase : 0; diff --git a/module/custom/css/set.zh-cn.css b/module/custom/css/set.zh-cn.css index 76da72e24c..b72a60e0e5 100644 --- a/module/custom/css/set.zh-cn.css +++ b/module/custom/css/set.zh-cn.css @@ -1 +1 @@ -.thWidth {width: 80px !important;} +.thWidth {width: 90px !important;}