* Remove branch param for storyModel getExecutionStories method.

This commit is contained in:
wangyidong
2023-05-12 09:46:05 +08:00
parent 52454e6dad
commit ae25ef94dc
7 changed files with 15 additions and 16 deletions
+2 -2
View File
@@ -825,7 +825,7 @@ class execution extends control
if($this->app->getViewType() == 'xhtml') $recPerPage = 10;
$pager = new pager($recTotal, $recPerPage, $pageID);
$stories = $this->story->getExecutionStories($executionID, 0, 0, $sort, $type, $param, $storyType, '', $pager);
$stories = $this->story->getExecutionStories($executionID, 0, $sort, $type, $param, $storyType, '', $pager);
$this->loadModel('common')->saveQueryCondition($this->dao->get(), 'story', false);
@@ -2973,7 +2973,7 @@ class execution extends control
if($_POST)
{
$stories = $this->loadModel('story')->getExecutionStories($executionID, 0, 0, $orderBy);
$stories = $this->loadModel('story')->getExecutionStories($executionID, 0, $orderBy);
$storySpecs = $this->story->getStorySpecs(array_keys($stories));
$order = 1;