属于BUG
修复模板扩展配色无法全部取消的BUG
https://gitee.com/Discuz/DiscuzX/pulls/1953
打开 source/admincp/admincp_styles.php
找到- if(isset($_GET['defaultextstylenew']) && isset($_GET['extstylenew'])) { if (!in_array($_GET['defaultextstylenew'], is_array($_GET['extstylenew']) ? $_GET['extstylenew'] : array())) {
复制代码 改为- if(isset($_GET['defaultextstylenew'])) { if(!isset($_GET['extstylenew']) || !is_array($_GET['extstylenew'])) { $_GET['extstylenew'] = array(); } if(!in_array($_GET['defaultextstylenew'], $_GET['extstylenew'])) {
复制代码
修复表情推荐无法全部取消的BUG
https://gitee.com/Discuz/DiscuzX/pulls/1954
打开 source/admincp/admincp_smilies.php
找到- if(!empty($_GET['fast']) && is_array($_GET['fast']) && !in_array($key, $_GET['fast'])) {
复制代码 改为- if(empty($_GET['fast']) || (is_array($_GET['fast']) && !in_array($key, $_GET['fast']))) {
复制代码 |