diff options
| author | Frederic Guillot <fred@kanboard.net> | 2016-02-04 21:38:53 -0500 |
|---|---|---|
| committer | Frederic Guillot <fred@kanboard.net> | 2016-02-04 21:38:53 -0500 |
| commit | 0f2b46dd6a9a1dc17768de2c415f382df95142e8 (patch) | |
| tree | 55191fce45c7c06b7d2b45834ea4151745c3db77 /app/Controller/Comment.php | |
| parent | 346151e103431e8de12520b26daae10676b8faf5 (diff) | |
Do not refresh the whole page when changing subtask status (work in progress)
Diffstat (limited to 'app/Controller/Comment.php')
| -rw-r--r-- | app/Controller/Comment.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controller/Comment.php b/app/Controller/Comment.php index 2ad3f379..da3213e0 100644 --- a/app/Controller/Comment.php +++ b/app/Controller/Comment.php @@ -107,7 +107,7 @@ class Comment extends Base public function update() { $task = $this->getTask(); - $comment = $this->getComment(); + $this->getComment(); $values = $this->request->getValues(); list($valid, $errors) = $this->commentValidator->validateModification($values); |
