This commit is contained in:
liumengyi
2022-01-06 15:25:09 +08:00
parent 77c4ca007d
commit 42e9076e66
4 changed files with 8 additions and 4 deletions

View File

@@ -764,8 +764,8 @@ class bugModel extends model
$bug->resolution = $data->resolutions[$bugID];
$bug->duplicateBug = $data->duplicateBugs[$bugID] ? $data->duplicateBugs[$bugID] : $oldBug->duplicateBug;
if($bug->assignedTo != $oldBug->assignedTo) $bug->assignedDate = $now;
if($bug->resolution != '') $bug->confirmed = 1;
if($bug->assignedTo != $oldBug->assignedTo) $bug->assignedDate = $now;
if($bug->resolution != '') $bug->confirmed = 1;
if(($bug->resolvedBy != '' or $bug->resolution != '') and $oldBug->status != 'closed')
{
$bug->resolvedDate = $now;
@@ -2694,6 +2694,8 @@ class bugModel extends model
* @param array $stories
* @param array $tasks
* @param string $mode
* @param array $projectPairs
*
* @access public
* @return void
*/

View File

@@ -1324,7 +1324,7 @@ class executionModel extends model
$module = 'execution';
$method = 'testcase';
}
if($module == 'testtask' and ($method == 'view' || $method == 'create' || $method == 'edit' || $method == 'linkcase'))
if($module == 'testtask')
{
$module = 'execution';
$method = 'testtask';

View File

@@ -1,3 +1,3 @@
.c-id {width: 60px;}
.c-name {width: 130px;}
.c-name {width: 300px;}
.c-desc {width: 300px;}

View File

@@ -1,3 +1,5 @@
td.title {overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
.main-table .table-header {box-shadow: none;}
.c-version, .c-result {width: 80px;}
#bysearchTab .icon-search {margin-right:3px;}