* Add escape operation to the exported internal Zen data.

This commit is contained in:
hufangzhou
2023-06-25 09:46:37 +08:00
parent b8244d5ff6
commit fe0623bc0d
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -21,7 +21,7 @@
35729 升级成功后没插入原内置的水晶报表
35726 达梦数据库添加数据源sql报错
35718 达梦数据库全文检索sql报错
35700 达梦数据库,多平台产品,点击产品->矩阵导航,sql异常
35700 达梦数据库,多平台产品,点击产品->矩阵导航,sql异常
34819 达梦安装方式,透视表下不显示检索标签
34610 创建上线计划有SQL报错
30371 添加中间表所属分组的下拉菜单遮挡
+2
View File
@@ -117,12 +117,14 @@ class prepareUpdate
foreach($stories as $storyID)
{
$storyTitle = $this->getStoryOrBugTitle('story', $storyID);
$storyTitle = htmlspecialchars_decode($storyTitle);
$doneStories .= $storyTitle ? $storyID . ' ' . $storyTitle . "\n" : '';
}
foreach($bugs as $bugID)
{
$bugTitle = $this->getStoryOrBugTitle('bug', $bugID);
$bugTitle = htmlspecialchars_decode($bugTitle);
$fixedBugs .= $bugTitle ? $bugID . ' ' . $bugTitle . "\n" : '';
}
}