From 6e7f5ec4ce45775ebc99482c5d38fb5acfc95f8b Mon Sep 17 00:00:00 2001 From: Bart Visscher Date: Fri, 27 Apr 2012 20:26:12 +0200 Subject: Tasks: Add input to edit the task location --- apps/tasks/ajax/update_property.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'apps/tasks/ajax') diff --git a/apps/tasks/ajax/update_property.php b/apps/tasks/ajax/update_property.php index a14816be127..b075489bd17 100644 --- a/apps/tasks/ajax/update_property.php +++ b/apps/tasks/ajax/update_property.php @@ -25,6 +25,10 @@ switch($property) { $description = $_POST['description']; $vtodo->setString('DESCRIPTION', $description); break; + case 'location': + $location = $_POST['location']; + $vtodo->setString('LOCATION', $location); + break; case 'categories': $categories = $_POST['categories']; $vtodo->setString('CATEGORIES', $categories); -- cgit v1.2.3