* fix bug for assignedTo field when create bug.

This commit is contained in:
wyd621
2013-09-29 01:16:33 +00:00
parent 548b2d9a12
commit 656c46e636
4 changed files with 21 additions and 14 deletions
+8 -7
View File
@@ -291,13 +291,14 @@ class bug extends control
{
$bug = $this->bug->getById($bugID);
extract((array)$bug);
$projectID = $bug->project;
$moduleID = $bug->module;
$taskID = $bug->task;
$storyID = $bug->story;
$buildID = $bug->openedBuild;
$severity = $bug->severity;
$type = $bug->type;
$projectID = $bug->project;
$moduleID = $bug->module;
$taskID = $bug->task;
$storyID = $bug->story;
$buildID = $bug->openedBuild;
$severity = $bug->severity;
$type = $bug->type;
$assignedTo = $bug->assignedTo;
}
/* If projectID is setted, get builds and stories of this project. */