* Fix bug #25627.
This commit is contained in:
@@ -32,7 +32,7 @@ $config->story->editor->assignto = array('id' => 'comment', 'tools' => 'simpleTo
|
||||
$config->story->list = new stdclass();
|
||||
$config->story->list->exportFields = '
|
||||
id, product, branch, module, plan, source, sourceNote, title, spec, verify, keywords,
|
||||
pri, estimate, status, stage, taskCountAB, bugCountAB, caseCountAB,
|
||||
pri, estimate, status, stage, category, taskCountAB, bugCountAB, caseCountAB,
|
||||
openedBy, openedDate, assignedTo, assignedDate, mailto,
|
||||
reviewedBy, reviewedDate,
|
||||
closedBy, closedDate, closedReason,
|
||||
|
||||
@@ -2597,7 +2597,7 @@ class story extends control
|
||||
if(isset($storyLang->stageList[$story->stage])) $story->stage = $storyLang->stageList[$story->stage];
|
||||
if(isset($storyLang->reasonList[$story->closedReason])) $story->closedReason = $storyLang->reasonList[$story->closedReason];
|
||||
if(isset($storyLang->sourceList[$story->source])) $story->source = $storyLang->sourceList[$story->source];
|
||||
if(isset($storyLang->sourceList[$story->sourceNote])) $story->sourceNote = $storyLang->sourceList[$story->sourceNote];
|
||||
if(isset($storyLang->categoryList[$story->category])) $story->category = $storyLang->categoryList[$story->category];
|
||||
|
||||
if(isset($users[$story->openedBy])) $story->openedBy = $users[$story->openedBy];
|
||||
if(isset($users[$story->assignedTo])) $story->assignedTo = $users[$story->assignedTo] . "(#$story->assignedTo)";
|
||||
|
||||
Reference in New Issue
Block a user