* Fix code error.

This commit is contained in:
Yagami
2021-06-22 16:00:57 +08:00
parent 2ca2752120
commit 0cb06aaa53
+1 -1
View File
@@ -380,7 +380,7 @@ class storyModel extends model
$story->pri = $stories->pri[$i];
$story->estimate = $stories->estimate[$i];
$story->status = ($stories->needReview[$i] == 0 and !$forceReview) ? 'active' : 'draft';
$story->stage = ($this->app->openApp == project or $this->app->openApp == execution) ? 'projected' : 'wait';
$story->stage = ($this->app->openApp == 'project' or $this->app->openApp == 'execution') ? 'projected' : 'wait';
$story->keywords = $stories->keywords[$i];
$story->sourceNote = $stories->sourceNote[$i];
$story->product = $productID;