Browse Source

调整

develop
叙述、别离 3 months ago
parent
commit
60c9e8997c
5 changed files with 5 additions and 4 deletions
  1. +1
    -1
      src/admin/templets/file_manage_main.htm
  2. +1
    -0
      src/static/web/css/admin.css
  3. +1
    -1
      src/system/common.inc.php
  4. +1
    -1
      src/system/datalistcp.class.php
  5. +1
    -1
      src/system/helpers/filter.helper.php

+ 1
- 1
src/admin/templets/file_manage_main.htm View File

@@ -17,7 +17,7 @@
<div class="card-header">文件管理器</div>
<div class="card-body">
<div class="table-responsive">
<table class="table table-borderless">
<table class="table table-borderless table-hover">
<thead>
<tr>
<td scope="col">文件名称</td>


+ 1
- 0
src/static/web/css/admin.css View File

@@ -394,6 +394,7 @@ body.menu-show .body-right {
}
.mysource,.mywriter {
width:500px;
border:1px solid var(--gray-300);
z-index:19994
}
.atlas {


+ 1
- 1
src/system/common.inc.php View File

@@ -7,7 +7,7 @@
* @link https://www.dedebiz.com
*/
//系统默认运行模式为安全模式,模板管理、标签管理、数据库管理、模块管理等功能已暂停,如果您需要这些功能,DEDEBIZ_SAFE_MODE后面值`TRUE`改为`FALSE`恢复使用
define('DEDEBIZ_SAFE_MODE', TRUE);
define('DEDEBIZ_SAFE_MODE', FALSE);
//生产环境使用`production`,如果采用`dev`模式,会有一些php的报错信息提示,用于开发调试
if (!defined('DEDE_ENVIRONMENT')) {
define('DEDE_ENVIRONMENT', 'production');


+ 1
- 1
src/system/datalistcp.class.php View File

@@ -189,7 +189,7 @@ class DataListCP
$pattern .= $ra[$i][$j];
}
$pattern .= '/i';
$replacement = substr($ra[$i], 0, 2).substr($ra[$i], 2);
$replacement = substr($ra[$i], 0, 2).'<x>'.substr($ra[$i], 2);
$val = preg_replace($pattern, $replacement, $val);
if ($val_before == $val) {
$found = false;


+ 1
- 1
src/system/helpers/filter.helper.php View File

@@ -81,7 +81,7 @@ if (!function_exists('RemoveXSS')) {
$pattern .= $ra[$i][$j];
}
$pattern .= '/i';
$replacement = substr($ra[$i], 0, 2).substr($ra[$i], 2);
$replacement = substr($ra[$i], 0, 2).'<x>'.substr($ra[$i], 2);
$val = preg_replace($pattern, $replacement, $val);
if ($val_before == $val) {
$found = false;


Loading…
Cancel
Save