summaryrefslogtreecommitdiff
path: root/app/Controller/Base.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-02-07 18:36:16 -0500
committerFrederic Guillot <fred@kanboard.net>2015-02-07 18:36:16 -0500
commitfa6d19928abcfa03861e264222dbe46ad2fdc15a (patch)
tree598861577bba3a0a65e0bd47eecfb29f11f167ae /app/Controller/Base.php
parentf83fc5bee4b93f1209bce14d1d7eaa50fdc6870b (diff)
Rename subtask model
Diffstat (limited to 'app/Controller/Base.php')
-rw-r--r--app/Controller/Base.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Controller/Base.php b/app/Controller/Base.php
index d36e02c0..ac7e8907 100644
--- a/app/Controller/Base.php
+++ b/app/Controller/Base.php
@@ -40,7 +40,7 @@ use Symfony\Component\EventDispatcher\Event;
* @property \Model\ProjectAnalytic $projectAnalytic
* @property \Model\ProjectActivity $projectActivity
* @property \Model\ProjectDailySummary $projectDailySummary
- * @property \Model\SubTask $subTask
+ * @property \Model\Subtask $subtask
* @property \Model\Swimlane $swimlane
* @property \Model\Task $task
* @property \Model\TaskCreation $taskCreation
@@ -168,7 +168,7 @@ abstract class Base
$this->handleAuthentication();
$this->handleAuthorization($controller, $action);
- $this->session['has_subtask_inprogress'] = $this->subTask->hasSubtaskInProgress($this->userSession->getId());
+ $this->session['has_subtask_inprogress'] = $this->subtask->hasSubtaskInProgress($this->userSession->getId());
}
}