diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-08-16 14:12:05 -0700 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-08-16 14:12:05 -0700 |
commit | db3c006be80d6690892b11608619f9683824e21b (patch) | |
tree | 65fdc801aa83d40c50170e7ad11226e30be1f649 /app/Model/Project.php | |
parent | 925b0ba2e56117e3bbe2947d7938ed35815efa1a (diff) |
Various minor fixes
Diffstat (limited to 'app/Model/Project.php')
-rw-r--r-- | app/Model/Project.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Model/Project.php b/app/Model/Project.php index 63458fa3..9f53fdda 100644 --- a/app/Model/Project.php +++ b/app/Model/Project.php @@ -431,7 +431,7 @@ class Project extends Base unset($category['id']); $category['project_id'] = $project_to; - if (! $categoryModel->create($category)) { + if (! $this->category->create($category)) { return false; } } |