diff --git a/module/story/ui/edit.html.php b/module/story/ui/edit.html.php
index 8c6468308c..383bfa4d49 100644
--- a/module/story/ui/edit.html.php
+++ b/module/story/ui/edit.html.php
@@ -36,8 +36,11 @@ if(!empty($story->stages) && isset($fields['stage']['options']))
}
}
-unset($fields['stage']['options']['delivered']);
-unset($fields['stage']['options']['delivering']);
+if($story->type == 'story')
+{
+ unset($fields['stage']['options']['delivered']);
+ unset($fields['stage']['options']['delivering']);
+}
if($app->tab == 'product') data('activeMenuID', $story->type);
jsVar('storyType', $story->type);