* Fix bugs.

This commit is contained in:
Yagami
2023-02-10 15:57:58 +08:00
parent 0436a025bb
commit e2f9d31254
+13 -3
View File
@@ -1612,9 +1612,19 @@ class story extends control
}
elseif($from == 'execution')
{
$module = 'execution';
$method = 'storyView';
$params = "storyID=$storyID";
$execution = $this->execution->getByID($this->session->execution);
if($execution->multiple)
{
$module = 'execution';
$method = 'storyView';
$params = "storyID=$storyID";
}
else
{
$module = 'story';
$method = 'view';
$params = "storyID=$storyID&version=0&param=0&storyType=$storyType";
}
}
else
{