diff options
| author | Frederic Guillot <fred@kanboard.net> | 2015-01-17 17:11:51 -0500 |
|---|---|---|
| committer | Frederic Guillot <fred@kanboard.net> | 2015-01-17 17:11:51 -0500 |
| commit | 84b0f0df90442775b9122457648f06c9485df1f1 (patch) | |
| tree | 5f0fb91ed9280bbf10bb60d69f3523cafc928f5c /app/Model/TaskExport.php | |
| parent | 4b45b2aa3533309898670f1b13756dfdfce355a7 (diff) | |
Add project calendars (merge/refactoring of #490)
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) { |
