diff --git a/module/story/zen.php b/module/story/zen.php index 92d6543587..dfa846a3e3 100644 --- a/module/story/zen.php +++ b/module/story/zen.php @@ -1175,7 +1175,6 @@ class storyZen extends story ->setIF(!in_array($this->post->source, $this->config->story->feedbackSource), 'notifyEmail', '') ->setIF($executionID > 0, 'stage', 'projected') ->setIF($bugID > 0, 'fromBug', $bugID) - ->setIF($storyType != 'story', 'stage', 'defining') ->get(); if(isset($_POST['reviewer'])) $_POST['reviewer'] = array_filter($_POST['reviewer']); @@ -1500,10 +1499,6 @@ class storyZen extends story { $story->stage = $storyType == 'story' ? 'projected' : 'planning'; } - else - { - $story->stage = $storyType == 'story' ? 'wait' : 'defining'; - } !empty($story->assignedTo) && $story->assignedDate = $now; if($this->post->uploadImage && $this->post->uploadImage[$i]) $story->uploadImage = $this->post->uploadImage[$i];