* code for bug #23516.

This commit is contained in:
wangyidong
2022-06-09 16:50:07 +08:00
parent d3afbb5922
commit 9b699300ff
4 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -365,7 +365,6 @@ class bug extends control
if(!empty($_POST))
{
$response['result'] = 'success';
$response['message'] = $this->lang->saveSuccess;
/* Set from param if there is a object to transfer bug. */
setcookie('lastBugModule', (int)$this->post->module, $this->config->cookieLife, $this->config->webRoot, '', $this->config->cookieSecure, false);
@@ -450,7 +449,8 @@ class bug extends control
$location = $this->createLink('bug', 'browse', "productID={$this->post->product}&branch=$branch&browseType=byModule&param={$this->post->module}&orderBy=id_desc");
}
if($this->app->getViewType() == 'xhtml') $location = $this->createLink('bug', 'view', "bugID=$bugID", 'html');
$response['locate'] = $location;
$response['message'] = $this->lang->saveSuccess;
$response['locate'] = $location;
return $this->send($response);
}
+2 -2
View File
@@ -116,8 +116,7 @@ class story extends control
if(!empty($_POST))
{
$response['result'] = 'success';
$response['message'] = $this->lang->saveSuccess;
$response['result'] = 'success';
setcookie('lastStoryModule', (int)$this->post->module, $this->config->cookieLife, $this->config->webRoot, '', $this->config->cookieSecure, false);
$storyResult = $this->story->create($objectID, $bugID, $from = isset($fromObjectIDKey) ? $fromObjectIDKey : '', $extra);
@@ -180,6 +179,7 @@ class story extends control
$message = $this->executeHooks($storyID);
if($message) $this->lang->saveSuccess = $message;
$response['message'] = $this->lang->saveSuccess;
if($this->viewType == 'json') return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'id' => $storyID));
+2 -2
View File
@@ -105,8 +105,7 @@ class task extends control
if(!empty($_POST))
{
$response['result'] = 'success';
$response['message'] = $this->lang->saveSuccess;
$response['result'] = 'success';
setcookie('lastTaskModule', (int)$this->post->module, $this->config->cookieLife, $this->config->webRoot, '', $this->config->cookieSecure, false);
if($this->post->execution) $executionID = (int)$this->post->execution;
@@ -164,6 +163,7 @@ class task extends control
$message = $this->executeHooks($taskID);
if($message) $this->lang->saveSuccess = $message;
$response['message'] = $this->lang->saveSuccess;
/* Return task id when call the API. */
if($this->viewType == 'json' or (defined('RUN_MODE') && RUN_MODE == 'api')) return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'id' => $taskID));
+2 -2
View File
@@ -316,8 +316,7 @@ class testcase extends control
$this->loadModel('story');
if(!empty($_POST))
{
$response['result'] = 'success';
$response['message'] = $this->lang->saveSuccess;
$response['result'] = 'success';
setcookie('lastCaseModule', (int)$this->post->module, $this->config->cookieLife, $this->config->webRoot, '', $this->config->cookieSecure, false);
$caseResult = $this->testcase->create($bugID);
@@ -344,6 +343,7 @@ class testcase extends control
$message = $this->executeHooks($caseID);
if($message) $this->lang->saveSuccess = $message;
$response['message'] = $this->lang->saveSuccess;
if($this->viewType == 'json') return $this->send(array('result' => 'success', 'message' => $this->lang->saveSuccess, 'id' => $caseID));
/* If link from no head then reload. */