summaryrefslogtreecommitdiffstats
path: root/apps/tasks/ajax
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2012-04-20 23:37:42 +0200
committerBart Visscher <bartv@thisnet.nl>2012-04-20 23:37:42 +0200
commitacea156a3d4ba94844b23946b2f24e8205f42462 (patch)
tree43637f85adcd7ee42071280e3628e07583478acf /apps/tasks/ajax
parent3d68732657dee0e131bb54c6ca4c4052cce7ce2f (diff)
downloadnextcloud-server-acea156a3d4ba94844b23946b2f24e8205f42462.tar.gz
nextcloud-server-acea156a3d4ba94844b23946b2f24e8205f42462.zip
Tasks: Save description field
Diffstat (limited to 'apps/tasks/ajax')
-rw-r--r--apps/tasks/ajax/update_property.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/tasks/ajax/update_property.php b/apps/tasks/ajax/update_property.php
index 2ce5f1a1f51..7128aee8d39 100644
--- a/apps/tasks/ajax/update_property.php
+++ b/apps/tasks/ajax/update_property.php
@@ -21,6 +21,10 @@ switch($property) {
$summary = $_POST['summary'];
$vtodo->setString('SUMMARY', $summary);
break;
+ case 'description':
+ $description = $_POST['description'];
+ $vtodo->setString('DESCRIPTION', $description);
+ break;
case 'due':
$due = $_POST['due'];
$due_date_only = $_POST['date'];