diff --git a/module/block/view/taskblock.html.php b/module/block/view/taskblock.html.php index e5e611d872..60c6eafb32 100644 --- a/module/block/view/taskblock.html.php +++ b/module/block/view/taskblock.html.php @@ -31,7 +31,7 @@ td.delayed{background: #e84e0f!important; color: white;} ?> > id;?> - task->priList), $task->pri, $task->pri)?> + task->priList, $task->pri, $task->pri)?> name?> estimate?> '>deadline, 0, 4) > 0) echo $task->deadline;?> diff --git a/module/misc/lang/en.php b/module/misc/lang/en.php index 853072653f..5db659c69c 100644 --- a/module/misc/lang/en.php +++ b/module/misc/lang/en.php @@ -74,6 +74,20 @@ $lang->misc->feature = new stdclass(); $lang->misc->feature->lastest = 'Latest Version'; $lang->misc->feature->detailed = 'Details'; +$lang->misc->feature->all['9.7.stable'][] = array('title'=>'optimize International package,Added Demo data。', 'desc' => ''); + +$lang->misc->feature->all['9.6.stable'][] = array('title'=>'added Webhook Interface feature', 'desc' => 'support communication with BearyChat,dingding'); +$lang->misc->feature->all['9.6.stable'][] = array('title'=>'added Score feature', 'desc' => 'More skilled Use, More score'); +$lang->misc->feature->all['9.6.stable'][] = array('title'=>'added Multiplayer task and subTask to project tasks', 'desc' => ''); +$lang->misc->feature->all['9.6.stable'][] = array('title'=>'added Product line management to Product View', 'desc' => ''); + +$lang->misc->feature->all['9.5.1'][] = array('title'=>'added Restricted Operatio', 'desc' => ''); + +$lang->misc->feature->all['9.3.beta'][] = array('title'=>'upgraded framework,Enhanced security', 'desc' => ''); + +$lang->misc->feature->all['9.1.stable'][] = array('title'=>'optimize Test View', 'desc' => '

added TestSuite,CaseLib and Test Statements

'); +$lang->misc->feature->all['9.1.stable'][] = array('title'=>'support Group steps of TestCase', 'desc' => ''); + $lang->misc->feature->all['9.0.beta'][] = array('title'=>'ZenTao CloudMail has been added.', 'desc' => '

ZenTao CloudMail is a free Email service launched jointly with SendCloud. Once binded with ZenTao and passed verification, users can use this service.

'); $lang->misc->feature->all['9.0.beta'][] = array('title'=>'Optimized Rich Text Editor and Markdown Editor.', 'desc' => ''); diff --git a/module/my/view/task.html.php b/module/my/view/task.html.php index 3ec7d32495..3774d106f3 100644 --- a/module/my/view/task.html.php +++ b/module/my/view/task.html.php @@ -54,7 +54,11 @@ pri;?>'>pri;?> createLink('project', 'browse', "projectid=$task->projectID"), $task->projectName);?> - createLink('task', 'view', "taskID=$task->id"), $task->name, null, "style='color: $task->color'");?> + + team)) echo '' . $this->lang->task->multipleAB . ' ';?> + parent)) echo '' . $this->lang->task->childrenAB . ' ';?> + createLink('task', 'view', "taskID=$task->id"), $task->name, null, "style='color: $task->color'");?> + openedBy);?> assignedTo);?> finishedBy);?> diff --git a/module/project/view/grouptask.html.php b/module/project/view/grouptask.html.php index bb798c8d78..2233c58111 100644 --- a/module/project/view/grouptask.html.php +++ b/module/project/view/grouptask.html.php @@ -55,7 +55,7 @@ $groupWait = 0; $groupDone = 0; $groupDoing = 0; - $groupClosed = 0; + $groupClosed = 0; $groupEstimate = 0.0; $groupConsumed = 0.0; $groupLeft = 0.0; @@ -113,7 +113,7 @@ id;?> - task->priList), $task->pri, $task->pri)?>'>task->priList), $task->pri, $task->pri);?> + task->priList, $task->pri, $task->pri)?>'>task->priList, $task->pri, $task->pri);?> team)) echo '' . $lang->task->multipleAB . ' '; diff --git a/module/search/view/buildform.html.php b/module/search/view/buildform.html.php index 0934964a27..1a436d400a 100644 --- a/module/search/view/buildform.html.php +++ b/module/search/view/buildform.html.php @@ -376,7 +376,7 @@ foreach($fieldParams as $fieldName => $param) echo ''; /* Print field. */ - echo "" . html::select("field$fieldNO", $searchFields, $formSession["field$fieldNO"], "onchange='setField(this, $fieldNO, {$module}params)' class='form-control'") . ''; + echo "" . html::select("field$fieldNO", $searchFields, $formSession["field$fieldNO"], "onchange='setField(this, $fieldNO, {$module}params)' class='form-control chosen'") . ''; /* Print operator. */ echo "" . html::select("operator$fieldNO", $lang->search->operators, $formSession["operator$fieldNO"], "class='form-control'") . ''; @@ -435,7 +435,7 @@ foreach($fieldParams as $fieldName => $param) echo ''; /* Print field. */ - echo "" . html::select("field$fieldNO", $searchFields, $formSession["field$fieldNO"], "onchange='setField(this, $fieldNO, {$module}params)' class='form-control'") . ''; + echo "" . html::select("field$fieldNO", $searchFields, $formSession["field$fieldNO"], "onchange='setField(this, $fieldNO, {$module}params)' class='form-control chosen'") . ''; /* Print operator. */ echo "" . html::select("operator$fieldNO", $lang->search->operators, $formSession["operator$fieldNO"], "class='form-control'") . ''; diff --git a/module/task/model.php b/module/task/model.php index de9498b0ea..4b4ff3bd74 100644 --- a/module/task/model.php +++ b/module/task/model.php @@ -672,6 +672,7 @@ class taskModel extends model $task->status = 'done'; $task->finishedBy = $oldTask->openedBy; // Fix bug#1341 $task->finishedDate = helper::now(); + $task->assignedTo = $oldTask->openedBy; // Fix bug#1341 } else { @@ -741,7 +742,7 @@ class taskModel extends model * * @param int $taskID * @access public - * @return void + * @return array */ public function recordEstimate($taskID) { @@ -2264,8 +2265,8 @@ class taskModel extends model /** * Get mail subject. - * - * @param object $task + * + * @param object $task * @access public * @return string */ @@ -2277,8 +2278,8 @@ class taskModel extends model /** * Get toList and ccList. - * - * @param object $task + * + * @param object $task * @access public * @return bool|array */