Index: openacs-4/packages/tasks/tcl/tasks-procs.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/tasks/tcl/tasks-procs.xql,v diff -u -r1.1.2.2 -r1.1.2.3 --- openacs-4/packages/tasks/tcl/tasks-procs.xql 7 Oct 2005 21:41:45 -0000 1.1.2.2 +++ openacs-4/packages/tasks/tcl/tasks-procs.xql 30 Nov 2005 16:06:53 -0000 1.1.2.3 @@ -7,14 +7,48 @@ update tasks set title = :title, description = :description, - mime_type = :mime_type, - comment = :comment, - due_date = :due_date, - priority = :priority, - status = :status + mime_type = :mime_type, + comment = :comment, + status_id = :status_id, + priority = :priority, + due_date = :due_date, + assignee_id = :assignee_id where task_id = :task_id + + + + update acs_objects + set modifying_user = :modifying_user, + modifying_ip = :modifying_ip, + last_modified = now() + where object_id = :task_id + + + + + + + + update t_process_tasks + set open_action_id = :open_action_id, + party_id = :party_id, + object_id = :object_id, + title = :title, + description = :description, + mime_type = :mime_type, + comment = :comment, + status_id = :status_id, + priority = :priority, + start = :start, + due = :due, + assignee_id = :assignee_id + where task_id = :task_id + + + +