diff options
| author | Frederic Guillot <fred@kanboard.net> | 2016-03-04 17:38:17 -0500 |
|---|---|---|
| committer | Frederic Guillot <fred@kanboard.net> | 2016-03-04 17:38:17 -0500 |
| commit | c083822806e075fd1932d7ce86903b4df967babb (patch) | |
| tree | 440114750691cac6925c03c70be62f14264c7b30 /app/Model/TaskCreation.php | |
| parent | 0d03c525a1aa1d54f01e754f762a19c19100c209 (diff) | |
Create Import namespace and move classes
Diffstat (limited to 'app/Model/TaskCreation.php')
| -rw-r--r-- | app/Model/TaskCreation.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Model/TaskCreation.php b/app/Model/TaskCreation.php index 576eb18c..2d2e5504 100644 --- a/app/Model/TaskCreation.php +++ b/app/Model/TaskCreation.php @@ -52,8 +52,8 @@ class TaskCreation extends Base $values = $this->dateParser->convert($values, array('date_due')); $values = $this->dateParser->convert($values, array('date_started'), true); - $this->removeFields($values, array('another_task')); - $this->resetFields($values, array('date_started', 'creator_id', 'owner_id', 'swimlane_id', 'date_due', 'score', 'category_id', 'time_estimated')); + $this->helper->model->removeFields($values, array('another_task')); + $this->helper->model->resetFields($values, array('date_started', 'creator_id', 'owner_id', 'swimlane_id', 'date_due', 'score', 'category_id', 'time_estimated')); if (empty($values['column_id'])) { $values['column_id'] = $this->column->getFirstColumnId($values['project_id']); |
