diff --git a/module/project/control.php b/module/project/control.php index 4bbcdf04e3..7a6e71ef88 100644 --- a/module/project/control.php +++ b/module/project/control.php @@ -2004,7 +2004,7 @@ class project extends control */ public function ajaxGetExecutions($projectID, $executionID = 0) { - $executions = array('' => '') + $this->loadModel('execution')->getpairs($projectID, 'all'); + $executions = array('' => '') + $this->loadModel('execution')->getPairs($projectID, 'all'); if($this->app->getViewType() == 'json') return print(json_encode($executionList)); return print(html::select('execution', $executions, $executionID, "class='form-control'"));