* Add the 18.6 version.

This commit is contained in:
hufangzhou
2023-08-15 15:04:56 +08:00
parent 589315a328
commit 8fcd7d59f6
18 changed files with 3988 additions and 70 deletions
+1 -1
View File
@@ -1 +1 @@
18.5
18.6
+1 -1
View File
@@ -1,7 +1,7 @@
{
"pkg": {
"xuanxuan": {
"gitVersion": "v7.2.1-rc.4",
"gitVersion": "e08cd0387cbfcf4cbc28b3b3e829683066ee3bc7",
"version": "7.2.1"
},
"zentaoext": {
File diff suppressed because it is too large Load Diff
+60
View File
@@ -18,3 +18,63 @@ DELETE FROM zt_privrelation WHERE `priv` = 'branch-manage' AND relationPriv = 'p
DELETE FROM zt_privrelation WHERE `priv` = 'branch-manage' AND relationPriv = 'product-edit';
UPDATE `zt_cron` SET `type` = 'zentao' WHERE `command` = 'moduleName=weekly&methodName=computeWeekly' AND `type` = 'system';
ALTER TABLE `zt_doc` ADD `editedList` text NULL AFTER `editingDate`;
ALTER TABLE `zt_case` ADD INDEX `scene` (`scene`);
UPDATE `zt_case` SET `scene` = `scene` - 100000000 WHERE `scene` > 100000000;
UPDATE `zt_scene` SET `sort` = `sort` - 100000000 WHERE `sort` > 100000000;
UPDATE `zt_scene` SET `parent` = `parent` - 100000000 WHERE `parent` > 100000000;
UPDATE `zt_scene` SET `path` = REPLACE(`path`, ',10000000', ','), `path` = REPLACE(`path`, ',1000000', ','), `path` = REPLACE(`path`, ',100000', ','), `path` = REPLACE(`path`, ',10000', ',');
DROP VIEW IF EXISTS `ztv_scenecase`;
-- DROP TABLE IF EXISTS `zt_actionlatest`;
CREATE TABLE IF NOT EXISTS `zt_actionlatest` (
`id` int(9) unsigned NOT NULL AUTO_INCREMENT,
`objectType` varchar(30) NOT NULL DEFAULT '',
`objectID` mediumint(8) unsigned NOT NULL DEFAULT '0',
`product` text NULL,
`project` mediumint(8) unsigned NOT NULL DEFAULT '0',
`execution` mediumint(8) unsigned NOT NULL DEFAULT '0',
`actor` varchar(100) NOT NULL DEFAULT '',
`action` varchar(80) NOT NULL DEFAULT '',
`date` datetime NULL,
`comment` text NULL,
`extra` text NULL,
`read` enum('0','1') NOT NULL DEFAULT '0',
`vision` varchar(10) NOT NULL DEFAULT 'rnd',
`efforted` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE INDEX `date` ON `zt_actionlatest`(`date`);
CREATE INDEX `actor` ON `zt_actionlatest`(`actor`);
CREATE INDEX `project` ON `zt_actionlatest`(`project`);
CREATE INDEX `action` ON `zt_actionlatest`(`action`);
CREATE INDEX `objectID` ON `zt_actionlatest`(`objectID`);
INSERT INTO `zt_actionlatest`(`objectType`,`objectID`,`product`,`project`,`execution`,`actor`,`action`,`date`,`comment`,`extra`,`read`,`vision`,`efforted`)
SELECT `objectType`,`objectID`,`product`,`project`,`execution`,`actor`,`action`,`date`,`comment`,`extra`,`read`,`vision`,`efforted` FROM `zt_action`
WHERE `date` >= DATE(DATE_SUB(NOW(), INTERVAL 1 MONTH));
INSERT INTO `zt_cron` (`m`, `h`, `dom`, `mon`, `dow`, `command`, `remark`, `type`, `buildin`, `status`) VALUES ('15', '0', '*', '*', '*', 'moduleName=action&methodName=cleanActions', '清除超过一个月的动态', 'zentao', 1, 'normal');
ALTER TABLE `zt_notify`
MODIFY COLUMN `toList` text NOT NULL AFTER `action`,
MODIFY COLUMN `subject` text NOT NULL AFTER `ccList`,
DROP INDEX `objectType_toList_status`,
ADD INDEX `objectType`(`objectType` ASC),
ADD INDEX `status`(`status` ASC);
CREATE INDEX deleted ON zt_bug (deleted);
CREATE INDEX project ON zt_bug (project);
CREATE INDEX product_status_deleted ON zt_bug (product,status,deleted);
UPDATE `zt_cron` SET `m` = '*/1' WHERE `m` = '*/5' AND `command` in ('moduleName=mail&methodName=asyncSend', 'moduleName=webhook&methodName=asyncSend') and `type` = 'zentao';
ALTER TABLE `zt_project` ADD INDEX `type_order` (`type`, `order`);
CREATE INDEX `vision` ON `zt_config`(`vision`);
CREATE INDEX `owner` ON `zt_config`(`owner`);
CREATE INDEX `module` ON `zt_config`(`module`);
CREATE INDEX `key` ON `zt_config`(`key`);
-59
View File
@@ -1,59 +0,0 @@
ALTER TABLE `zt_doc` ADD `editedList` text NULL AFTER `editingDate`;
ALTER TABLE `zt_case` ADD INDEX `scene` (`scene`);
UPDATE `zt_case` SET `scene` = `scene` - 100000000 WHERE `scene` > 100000000;
UPDATE `zt_scene` SET `sort` = `sort` - 100000000 WHERE `sort` > 100000000;
UPDATE `zt_scene` SET `parent` = `parent` - 100000000 WHERE `parent` > 100000000;
UPDATE `zt_scene` SET `path` = REPLACE(`path`, ',10000000', ','), `path` = REPLACE(`path`, ',1000000', ','), `path` = REPLACE(`path`, ',100000', ','), `path` = REPLACE(`path`, ',10000', ',');
DROP VIEW IF EXISTS `ztv_scenecase`;
-- DROP TABLE IF EXISTS `zt_actionlatest`;
CREATE TABLE IF NOT EXISTS `zt_actionlatest` (
`id` int(9) unsigned NOT NULL AUTO_INCREMENT,
`objectType` varchar(30) NOT NULL DEFAULT '',
`objectID` mediumint(8) unsigned NOT NULL DEFAULT '0',
`product` text NULL,
`project` mediumint(8) unsigned NOT NULL DEFAULT '0',
`execution` mediumint(8) unsigned NOT NULL DEFAULT '0',
`actor` varchar(100) NOT NULL DEFAULT '',
`action` varchar(80) NOT NULL DEFAULT '',
`date` datetime NULL,
`comment` text NULL,
`extra` text NULL,
`read` enum('0','1') NOT NULL DEFAULT '0',
`vision` varchar(10) NOT NULL DEFAULT 'rnd',
`efforted` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE INDEX `date` ON `zt_actionlatest`(`date`);
CREATE INDEX `actor` ON `zt_actionlatest`(`actor`);
CREATE INDEX `project` ON `zt_actionlatest`(`project`);
CREATE INDEX `action` ON `zt_actionlatest`(`action`);
CREATE INDEX `objectID` ON `zt_actionlatest`(`objectID`);
INSERT INTO `zt_actionlatest`(`objectType`,`objectID`,`product`,`project`,`execution`,`actor`,`action`,`date`,`comment`,`extra`,`read`,`vision`,`efforted`)
SELECT `objectType`,`objectID`,`product`,`project`,`execution`,`actor`,`action`,`date`,`comment`,`extra`,`read`,`vision`,`efforted` FROM `zt_action`
WHERE `date` >= DATE(DATE_SUB(NOW(), INTERVAL 1 MONTH));
INSERT INTO `zt_cron` (`m`, `h`, `dom`, `mon`, `dow`, `command`, `remark`, `type`, `buildin`, `status`) VALUES ('15', '0', '*', '*', '*', 'moduleName=action&methodName=cleanActions', '清除超过一个月的动态', 'zentao', 1, 'normal');
ALTER TABLE `zt_notify`
MODIFY COLUMN `toList` text NOT NULL AFTER `action`,
MODIFY COLUMN `subject` text NOT NULL AFTER `ccList`,
DROP INDEX `objectType_toList_status`,
ADD INDEX `objectType`(`objectType` ASC),
ADD INDEX `status`(`status` ASC);
CREATE INDEX deleted ON zt_bug (deleted);
CREATE INDEX project ON zt_bug (project);
CREATE INDEX product_status_deleted ON zt_bug (product,status,deleted);
UPDATE `zt_cron` SET `m` = '*/1' WHERE `m` = '*/5' AND `command` in ('moduleName=mail&methodName=asyncSend', 'moduleName=webhook&methodName=asyncSend') and `type` = 'zentao';
ALTER TABLE `zt_project` ADD INDEX `type_order` (`type`, `order`);
CREATE INDEX `vision` ON `zt_config`(`vision`);
CREATE INDEX `owner` ON `zt_config`(`owner`);
CREATE INDEX `module` ON `zt_config`(`module`);
CREATE INDEX `key` ON `zt_config`(`key`);
+95
View File
@@ -1,3 +1,98 @@
2023-08-15 18.6
完成的需求
开源版:
39958 文档按版本记录每个版本下的附件内容
46723 新增区域页面中调整复制区域样式的名称
31901 产品中设置的评审人默认具备产品访问权限
39958 文档按版本记录每个版本下的附件内容
44084 文档详情对比后内容区域优化删除和新增的样式
46723 新增区域页面中调整复制区域样式的名称
42686 版本关联需求时搜索列表中过滤掉草稿、评审中、变更中的需求
44726 文档详情中文章内容大纲支持显示所有层级
39958 文档按版本记录每个版本下的附件内容
42686 版本关联需求时搜索列表中过滤掉草稿、评审中、变更中的需求
45887 优化树状图中任务的显示规则
46723 新增区域页面中调整复制区域样式的名称
30539 数据备份前自动检查空间大小空间不足时给出提示
43731 附件增加单独的预览权限
45316 创建文档时调整选择模板的方式
47076 测试下面的测试单中创建测试报告与执行下面测试单创建测试报告逻辑保持一致
47293 升级流程中在执行SQL环节增加进度展示
企业版:
47188 汇总设置增加提示文案
47126 透视表设计器实现汇总设置参数的开关
47127 在未勾选汇总设置时实现下一步按钮和流程标签的校验逻辑
47130 前台支持切换查看透视表和原始数据
47137 前台支持查看未勾选汇总设置的透视表
47138 前台支持查看透视表的原始数据
47132 老用户未设置报表设计参数的水晶报表时也可以正常升级
47137 前台支持查看未勾选汇总设置的透视表
47138 前台支持查看透视表的原始数据
46528 浏览数据表时可以分页查看数据表
旗舰版:
47077 调整瀑布项目甘特图中任务计划起止日期的显示规则
46637 检查清单中的不符合项不直接影响评审结果
46631 地盘待处理区块中标签下无数据时隐藏该标签
46630 地盘待处理区块中将审批标签调整到日程后面
46629 工时明细表中列表数据超过一屏时底部滚动条置顶显示
44213 融合瀑布模型中看板和迭代工时数据参与挣值计算
46639 批量创建质量保证计划时可以按过程内容默认填充所有活动、文档
46636 评审问题列表中增加搜索功能
46626 不符合项列表增加搜索功能
46625 质量保证计划列表增加搜索功能
修复的Bug
开源版:
36686 产品下创建非激活状态需求没有记录动态和历史记录
36654 升级后产品需求的数据不正确
36958 修改需求的所属产品异常
36954 任务起止时间设置必填不生效
36722 升级18.5系列版本,出现一致性检查需要手动执行SQL
36910 更新燃尽图计算有误
36959 禅道项目空间提研发需求提示【所属计划】不能为空
35520 无产品无迭代项目用户需求列表点击SR处数字提示无权限
35526 无产品无迭代项目研发需求列表切换为看板视图后无法再切换到用户需求
36945 全局搜索无迭代项目下任务,点击没有跳转项目标签
36055 通用看板模块的“泳道高度”设置“自定义”后卡片展示没有按照高度变化来呈现
36102 mysql8下文档仪表盘下的产品文档区块sql报错
36961 评审用例时选了了多人,用例列表中显示用户名,不显示姓名
36074 附件下载链接带sid信息
36826 执行的工时重复统计了父子任务的工时
37048 后台文档模板中编辑模板的字段显示的是“创建模板”
36981 无产品无迭代项目下文档详情页1.5级导航丢失
36916 链接类型的文档升级后链接没有渲染出来
35404 系统权限保存速度太慢
35786 无产品的融合敏捷项目下的看板,批量提需求后,页面未刷新
36405 创建产品页面选择项目集或删除项目集后产品线控件处加载2次
37052 【性能】权限保存20s+
25993 scrum看板任务看板按需分组切换排序条件卡片渲染不出来
37122 在地盘仪表盘移动【我的待处理】区块,进入审批中的onlybody超链接,跳转到了页面而不是弹窗
37046 多分支产品下提研发需求页面的“用户需求”无法正常加载
35381 【4.4alpha1】无迭代项目需求分解任务慢
26408 gogs服务器用户1千人时,进入绑定用户页面无加载信息
27044 项目集下项目过多时,页面反应慢
37084 18.5版本用例数据较多时,页面卡顿
37243 多分支产品创建研发需求,用户需求没有根据分支联动
37241 所有分支下创建研发需求,显示所有的用户需求
37045 研发看板卡片拖动排序后刷新页面排序不成功
34331 维护部门时,页面样式不正确
37230 二次开发数据字典中左侧目录树无法正常展示
企业版:
36779 Bug类型统计表表头类型显示的不是中文
36857 透视表下的项目Bug类型统计表中类型显示为了键名
36920 BI下导出按钮失效
36626 登录有代码报错
旗舰版:
34960 文档链接复制后在新页签中打开报错
36453 linux一键安装包瀑布项目评审保存结果有报错
33583 瀑布项目甘特图中阶段显示的计划开始、结束时间不正确
36465 工作流开启审批流后进行评审时不发送webhook应用通知
36115 私有产品可访问权限,增加项目所属项目集干系人
35661 【调整优化】达梦数据库版本的禅道升级时,数据库备份页面需优化
36051 地盘仪表盘中未完成的项目统计瀑布项目进度没有跟随周报进度
37040 新增工作流字段后项目阶段测试用例搜索异常
35828 状态为“已入库”的数据依然可以进行批量审批
37235 里程碑报告中开始周数和结束周数不正确
2023-07-27 ipd1.0
完成的需求
42981 实现需求的导入功能
+1 -1
View File
@@ -389,8 +389,8 @@ $lang->action->label->updatetrainee = 'Update Trainee';
$lang->action->label->setdefaultbranch = 'Set default branch';
$lang->action->label->syncprogram = 'start';
$lang->action->label->syncproject = 'start';
$lang->action->label->syncexecution = 'start';
$lang->action->label->syncmultipleproject = 'start';
$lang->action->label->syncexecution = 'start';
$lang->action->label->syncexecutionbychild = 'start';
$lang->action->label->startProgram = '(The start of the project sets the status of the program as Ongoing)';
$lang->action->label->createmr = 'Merge Request Linked';
+5
View File
@@ -271,6 +271,11 @@ $lang->install->groupList['LITEPROJECT']['desc'] = 'Operation Management Interf
$lang->install->groupList['LITETEAM']['name'] = 'LITETEAM';
$lang->install->groupList['LITETEAM']['desc'] = 'Operation Management Interface Team';
$lang->install->groupList['IPDPRODUCTPLAN']['name'] = 'PRODUCT PLANING';
$lang->install->groupList['IPDDEMAND']['name'] = 'DEMAND ANALYSIS';
$lang->install->groupList['IPDPMT']['name'] = 'IPDPMT';
$lang->install->groupList['IPDADMIN']['name'] = 'IPDADMIN';
$lang->install->cronList[''] = 'Moniteur Cron';
$lang->install->cronList['moduleName=execution&methodName=computeBurn'] = 'Mise à jour Graphe Burndown';
$lang->install->cronList['moduleName=report&methodName=remind'] = 'Rappel Tâches quotidiennes';
+2
View File
@@ -104,6 +104,7 @@ $lang->misc->feature->visionsDesc = "<p>The concept of interface has been add
$lang->misc->feature->visionsImage = 'theme/default/images/main/visions_en.png';
/* Release Date. */
$lang->misc->releaseDate['18.6'] = '2023-08-15';
$lang->misc->releaseDate['18.5'] = '2023-07-05';
$lang->misc->releaseDate['18.4'] = '2023-06-14';
$lang->misc->releaseDate['18.4.beta1'] = '2023-05-31';
@@ -205,6 +206,7 @@ $lang->misc->releaseDate['7.1.stable'] = '2015-03-07';
$lang->misc->releaseDate['6.3.stable'] = '2014-11-07';
/* Release Detail. */
$lang->misc->feature->all['18.6'][] = array('title' => "We have made significant improvements to the performance of commonly used lists and the details of BI functionality, while also refining the functionality details of waterfall projects. Additionally, we have diligently addressed and resolved any identified bugs.", 'desc' => '');
$lang->misc->feature->all['18.5'][] = array('title' => "Our academy's curriculum now supports cloud-based importing and the previewing of PDF files within courses. Additionally, we've optimized the loading speed of commonly used lists and addressed multiple bugs.", 'desc' => '');
$lang->misc->feature->all['18.4'][] = array('title' => 'In this release, we have improved the performance of the core list, added compatibility with Dameng databases, and resolved multiple bugs.', 'desc' => '');
$lang->misc->feature->all['18.4.beta1'][] = array('title' => 'Fix bugs.', 'desc' => '');
+2
View File
@@ -104,6 +104,7 @@ $lang->misc->feature->visionsDesc = "<p>The concept of interface has been add
$lang->misc->feature->visionsImage = 'theme/default/images/main/visions_en.png';
/* Release Date. */
$lang->misc->releaseDate['18.6'] = '2023-08-15';
$lang->misc->releaseDate['18.5'] = '2023-07-05';
$lang->misc->releaseDate['18.4'] = '2023-06-14';
$lang->misc->releaseDate['18.4.beta1'] = '2023-05-31';
@@ -205,6 +206,7 @@ $lang->misc->releaseDate['7.1.stable'] = '2015-03-07';
$lang->misc->releaseDate['6.3.stable'] = '2014-11-07';
/* Release Detail. */
$lang->misc->feature->all['18.6'][] = array('title' => "We have made significant improvements to the performance of commonly used lists and the details of BI functionality, while also refining the functionality details of waterfall projects. Additionally, we have diligently addressed and resolved any identified bugs.", 'desc' => '');
$lang->misc->feature->all['18.5'][] = array('title' => "Our academy's curriculum now supports cloud-based importing and the previewing of PDF files within courses. Additionally, we've optimized the loading speed of commonly used lists and addressed multiple bugs.", 'desc' => '');
$lang->misc->feature->all['18.4'][] = array('title' => 'In this release, we have improved the performance of the core list, added compatibility with Dameng databases, and resolved multiple bugs.', 'desc' => '');
$lang->misc->feature->all['18.4.beta1'][] = array('title' => 'Fix bugs.', 'desc' => '');
+2
View File
@@ -104,6 +104,7 @@ $lang->misc->feature->visionsDesc = "<p>The concept of interface has been add
$lang->misc->feature->visionsImage = 'theme/default/images/main/visions_en.png';
/* Release Date. */
$lang->misc->releaseDate['18.6'] = '2023-08-15';
$lang->misc->releaseDate['18.5'] = '2023-07-05';
$lang->misc->releaseDate['18.4'] = '2023-06-14';
$lang->misc->releaseDate['18.4.beta1'] = '2023-05-31';
@@ -205,6 +206,7 @@ $lang->misc->releaseDate['7.1.stable'] = '2015-03-07';
$lang->misc->releaseDate['6.3.stable'] = '2014-11-07';
/* Release Detail. */
$lang->misc->feature->all['18.6'][] = array('title' => "Our academy's curriculum now supports cloud-based importing and the previewing of PDF files within courses. Additionally, we've optimized the loading speed of commonly used lists and addressed multiple bugs.", 'desc' => '');
$lang->misc->feature->all['18.5'][] = array('title' => "Our academy's curriculum now supports cloud-based importing and the previewing of PDF files within courses. Additionally, we've optimized the loading speed of commonly used lists and addressed multiple bugs.", 'desc' => '');
$lang->misc->feature->all['18.4'][] = array('title' => 'In this release, we have improved the performance of the core list, added compatibility with Dameng databases, and resolved multiple bugs.', 'desc' => '');
$lang->misc->feature->all['18.4.beta1'][] = array('title' => 'Fix bugs.', 'desc' => '');
+2
View File
@@ -104,6 +104,7 @@ $lang->misc->feature->visionsDesc = "<p>从16.5开始增加了界面概念,
$lang->misc->feature->visionsImage = 'theme/default/images/main/visions.png';
/* Release Date. */
$lang->misc->releaseDate['18.6'] = '2023-08-15';
$lang->misc->releaseDate['18.5'] = '2023-07-05';
$lang->misc->releaseDate['18.4'] = '2023-06-14';
$lang->misc->releaseDate['18.4.beta1'] = '2023-05-31';
@@ -205,6 +206,7 @@ $lang->misc->releaseDate['7.1.stable'] = '2015-03-07';
$lang->misc->releaseDate['6.3.stable'] = '2014-11-07';
/* Release Detail. */
$lang->misc->feature->all['18.6'][] = array('title' => '优化了常用列表性能和BI功能的细节,并完善了瀑布项目的功能细节。修复Bug。', 'desc' => '');
$lang->misc->feature->all['18.5'][] = array('title' => '学堂课程支持从云端导入,支持课程中PDF文件的预览,同时还优化了常用列表的加载速度,修复了多处Bug。', 'desc' => '');
$lang->misc->feature->all['18.4'][] = array('title' => '本次发布优化了核心列表的性能,兼容达梦数据库,修复了多处Bug。', 'desc' => '');
$lang->misc->feature->all['18.4.beta1'][] = array('title' => '解Bug。', 'desc' => '');
+1
View File
@@ -20,6 +20,7 @@ $lang->product->create = "Erstelle {$lang->productCommon}";
$lang->product->delete = "Lösche {$lang->productCommon}";
$lang->product->deleted = 'Gelöscht';
$lang->product->close = 'Schließen';
$lang->product->activate = 'Activate';
$lang->product->select = "Auswahl {$lang->productCommon}";
$lang->product->mine = 'Meine Zuständigkeiten';
$lang->product->other = 'Andere';
+1
View File
@@ -235,6 +235,7 @@ $lang->product->featureBar['project']['doing'] = '进行中';
$lang->product->featureBar['project']['suspended'] = '已挂起';
$lang->product->featureBar['project']['closed'] = '已关闭';
$lang->product->moreSelects['browse']['more']['reviewedbyme'] = $lang->product->reviewedByMe;
$lang->product->moreSelects['browse']['more']['assignedbyme'] = $lang->product->assignedByMe;
$lang->product->moreSelects['browse']['more']['closedbyme'] = $lang->product->closedByMe;
+4 -5
View File
@@ -129,8 +129,7 @@ $lang->programplan->error->sameType = 'Type of the stage must be as same
$lang->programplan->ganttBrowseType['gantt'] = 'Group by Stage';
$lang->programplan->ganttBrowseType['assignedTo'] = 'Group by AssignedTo';
$lang->programplan->gantt = new stdclass();
$lang->programplan->gantt->reviewColorList['draft'] = '#FC913F';
$lang->programplan->gantt->reviewColorList['reviewing'] = '#CD6F27';
$lang->programplan->gantt->reviewColorList['pass'] = '#0DBB7D';
$lang->programplan->gantt->reviewColorList['fail'] = '#FB2B2B';
$lang->programplan->reviewColorList['draft'] = '#FC913F';
$lang->programplan->reviewColorList['reviewing'] = '#CD6F27';
$lang->programplan->reviewColorList['pass'] = '#0DBB7D';
$lang->programplan->reviewColorList['fail'] = '#FB2B2B';
+1
View File
@@ -232,6 +232,7 @@ $config->upgrade->liteVersion['liteVIP1_2'] = 'biz7_1';
$config->upgrade->ipdVersion = array();
$config->upgrade->ipdVersion['ipd1_0_beta1'] = '18_4_alpha1';
$config->upgrade->ipdVersion['ipd1_0'] = '18_5';
$config->upgrade->ipdVersion['ipd1_0_1'] = '18_6';
$config->upgrade->lowerTables = array();
$config->upgrade->lowerTables[$config->db->prefix . 'caseStep'] = $config->db->prefix . 'casestep';
+4 -2
View File
@@ -407,7 +407,9 @@ $lang->upgrade->fromVersions['max4_3'] = 'Max4.3';
$lang->upgrade->fromVersions['max4_4_alpha1'] = 'Max4.4.alpha1';
$lang->upgrade->fromVersions['max4_4_beta1'] = 'Max4.4.beta1';
$lang->upgrade->fromVersions['max4_4'] = 'Max4.4';
$lang->upgrade->fromVersions['max4_5'] = 'Max4.5'; // max insert position.
$lang->upgrade->fromVersions['max4_5'] = 'Max4.5';
$lang->upgrade->fromVersions['max4_6'] = 'Max4.6'; // max insert position.
/* Ipd */
$lang->upgrade->fromVersions['ipd1_0_beta1'] = 'Ipd1.0.beta1'; // ipd insert position.
$lang->upgrade->fromVersions['ipd1_0_beta1'] = 'Ipd1.0.beta1';
$lang->upgrade->fromVersions['ipd1_0'] = 'Ipd1.0'; // ipd insert position.
+2 -1
View File
@@ -1180,7 +1180,8 @@ class upgradeModel extends model
case '18_4':
$confirmContent .= file_get_contents($this->getUpgradeFile('18.4'));
case '18_5':
$confirmContent .= file_get_contents($this->getUpgradeFile('ipdinstall')); // confirm insert position.
if(strpos($fromVersion, 'ipd') === false) $confirmContent .= file_get_contents($this->getUpgradeFile('ipdinstall'));
$confirmContent .= file_get_contents($this->getUpgradeFile('18.5')); // confirm insert position.
}
return $confirmContent;