* [bug#50340,done,1h] modify the export subtasks label issue.

This commit is contained in:
tianshujie
2024-05-30 10:15:51 +08:00
parent d06373e847
commit 3f02450ea0
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -190,7 +190,7 @@ class file extends control
$output .= '"';
foreach($fields as $fieldName => $fieldLabel)
{
$output .= isset($row->$fieldName) ? str_replace(array('"', '&nbsp;'), array('“', ' '), htmlSpecialString(strip_tags((string)$row->$fieldName, '<img>'))) : '';
$output .= isset($row->$fieldName) ? str_replace(array('"', '&nbsp;', '&gt;'), array('“', ' ', '>'), htmlSpecialString(strip_tags((string)$row->$fieldName, '<img>'))) : '';
$output .= '","';
}
$output .= '"' . "\n";
+1 -1
View File
@@ -1349,7 +1349,7 @@ class taskZen extends task
}
}
if($task->parent > 0 && strpos($task->name, htmlentities('>')) !== 0) $task->name = '>' . $task->name;
if($this->config->edition == 'open' && $task->parent > 0 && strpos($task->name, htmlentities('>')) !== 0) $task->name = '>' . $task->name;
if(!empty($task->team))
{
$task->name = '[' . $this->lang->task->multipleAB . '] ' . $task->name;