From 4d95f21982847e2679966587d6ac6f72c5ad1499 Mon Sep 17 00:00:00 2001 From: tianya Date: Mon, 31 Mar 2025 23:53:04 +0800 Subject: [PATCH] bump 6.5.6 --- docs/changelog.md | 9 +++++++++ src/data/admin/ver.txt | 2 +- src/install/index.php | 2 +- src/system/archive/listview.class.php | 2 +- src/system/archive/sglistview.class.php | 2 +- src/system/common.inc.php | 2 +- 6 files changed, 14 insertions(+), 5 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index a8cc5627..d7cc4a84 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,6 +1,15 @@ # 更新记录 通过访问 https://www.dedebiz.com/git 获取完整更新记录 +# V6.5.6 +- PHP8高版本兼容性调整; +- SQLite支持兼容性调整; +- 默认启用开发模式,建议生成环境更改为安全模式; +- 优化DedeBIZ命令行工具; +- 搜索关键词功能优化; +- 安装目录更新SQL语句位置调整; +- 修复安装SQL没有正确执行的错误; + # V6.5.2 - 富文本编辑器支持AI操作,需要AI助手1.0.3版本; - SQL命令工具优化; diff --git a/src/data/admin/ver.txt b/src/data/admin/ver.txt index 185f9eb0..d8e85ead 100644 --- a/src/data/admin/ver.txt +++ b/src/data/admin/ver.txt @@ -1 +1 @@ -20250326 \ No newline at end of file +20250331 \ No newline at end of file diff --git a/src/install/index.php b/src/install/index.php index 83877650..50106e2a 100644 --- a/src/install/index.php +++ b/src/install/index.php @@ -11,7 +11,7 @@ error_reporting(E_ALL || ~E_NOTICE); define('INSLOCKFILE', dirname(__FILE__).'/install_lock.txt'); $verMsg = 'V6'; $dfDbname = 'DedeBIZ'; -$cfg_version_detail = '6.5.2'; //详细版本号 +$cfg_version_detail = '6.5.6'; //详细版本号 $errmsg = ''; if (version_compare(PHP_VERSION, '8.0.0', '>=') && function_exists("mysqli_report")) { mysqli_report(MYSQLI_REPORT_OFF); diff --git a/src/system/archive/listview.class.php b/src/system/archive/listview.class.php index d9cbd3eb..737c6ca0 100755 --- a/src/system/archive/listview.class.php +++ b/src/system/archive/listview.class.php @@ -1113,7 +1113,7 @@ class ListView //开启伪静态对规则替换 if ($cfg_rewrite == 'Y') { $purl = str_replace("/apps", "", $purl); - $nowurls = str_replace("/", ".php?", $purl); + $nowurls = preg_replace("/", ".php?", $purl); $nowurls = explode("?", $nowurls); $purl = $nowurls[0]; } diff --git a/src/system/archive/sglistview.class.php b/src/system/archive/sglistview.class.php index b0581be8..b9754e99 100755 --- a/src/system/archive/sglistview.class.php +++ b/src/system/archive/sglistview.class.php @@ -968,7 +968,7 @@ class SgListView //开启伪静态对规则替换 if ($cfg_rewrite == 'Y') { $purl = str_replace("/apps", "", $purl); - $nowurls = str_replace("/", ".php?", $purl); + $nowurls = preg_replace("/", ".php?", $purl); $nowurls = explode("?", $nowurls); $purl = $nowurls[0]; } diff --git a/src/system/common.inc.php b/src/system/common.inc.php index 0373f446..433936f3 100755 --- a/src/system/common.inc.php +++ b/src/system/common.inc.php @@ -198,7 +198,7 @@ $cfg_medias_dir = $cfg_cmspath.$cfg_medias_dir; $cfg_mediasurl = $cfg_mainsite.$cfg_medias_dir; //程序信息摘要,请不要删除则系统无法接收升级信息 $cfg_version = 'V6'; -$cfg_version_detail = '6.5.2';//详细版本号 +$cfg_version_detail = '6.5.6';//详细版本号 $cfg_soft_lang = 'utf-8'; $cfg_soft_public = 'base'; $cfg_softname = '得德系统';