diff options
Diffstat (limited to 'app/Model/TaskExport.php')
-rw-r--r-- | app/Model/TaskExport.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Model/TaskExport.php b/app/Model/TaskExport.php index 1592deb1..9545d062 100644 --- a/app/Model/TaskExport.php +++ b/app/Model/TaskExport.php @@ -24,7 +24,7 @@ class TaskExport extends Base public function export($project_id, $from, $to) { $tasks = $this->getTasks($project_id, $from, $to); - $swimlanes = $this->swimlane->getSwimlanesList($project_id); + $swimlanes = $this->swimlane->getList($project_id); $results = array($this->getColumns()); foreach ($tasks as &$task) { |