Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorraimund-schluessler <raimund.schluessler@googlemail.com>2014-07-24 21:47:30 +0400
committerraimund-schluessler <raimund.schluessler@googlemail.com>2014-07-24 21:47:30 +0400
commit931d9d7318f098575392100dc4d1b5950c9545d0 (patch)
tree907590f4d905529f446e8ec977e818f2521f08d0 /lib
parentddbd6cd4a8f04d1990278a06d7b0549d4a8330fc (diff)
Fix potentially undefined variable
Diffstat (limited to 'lib')
-rw-r--r--lib/helper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/helper.php b/lib/helper.php
index 94ab287a..c3b43cef 100644
--- a/lib/helper.php
+++ b/lib/helper.php
@@ -184,8 +184,8 @@ Class helper {
'time' => $time
);
}
+ $task['comments'] = $comments_parsed;
}
- $task['comments'] = $comments_parsed;
return $task;
}