From f99f2ca881a9fc78484abc75c25c112d19218a54 Mon Sep 17 00:00:00 2001 From: caoyanyi Date: Tue, 10 Jan 2023 09:04:06 +0800 Subject: [PATCH] * Fix bug #31564. --- module/tutorial/model.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/module/tutorial/model.php b/module/tutorial/model.php index c574509196..721133ca0f 100644 --- a/module/tutorial/model.php +++ b/module/tutorial/model.php @@ -227,10 +227,10 @@ class tutorialModel extends model $execution->hasProduct = ''; $execution->multiple = ''; $execution->order = 1; - $execution->burns = array(''); - $execution->type = 'sprint'; - $execution->projectName = ''; - $execution->projectModel = ''; + $execution->burns = array(''); + $execution->type = 'sprint'; + $execution->projectName = ''; + $execution->projectModel = ''; if($browseType and $browseType != 'all') $execution->name .= '-' . $browseType; // Fix bug #21096 @@ -354,7 +354,7 @@ class tutorialModel extends model $execution->fluidBoard = 0; $execution->hours = $hours; $execution->burns = array(35, 35); - $execution->hasProduct = ''; + $execution->hasProduct = 1; $execution->multiple = ''; return $execution; }