Index: openacs-4/packages/tasks/www/task.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/tasks/www/Attic/task.tcl,v diff -u -r1.6 -r1.7 --- openacs-4/packages/tasks/www/task.tcl 14 Oct 2005 13:50:07 -0000 1.6 +++ openacs-4/packages/tasks/www/task.tcl 7 Nov 2005 18:03:27 -0000 1.7 @@ -169,7 +169,7 @@ {comment:text(textarea),optional,nospell {label "[_ tasks.Comment]"} {html { rows 6 cols 60 wrap soft}}} - + {assignee_id:text(hidden)} } -new_request { set title "[_ tasks.Add_Task]" @@ -245,7 +245,8 @@ -comment ${comment} \ -due_date ${due_date} \ -status_id ${status} \ - -priority ${priority}] + -priority ${priority} \ + -assignee_id ${assignee_id}] set task_url [export_vars -base task -url {task_id status_id orderby party_id}] util_user_message -html -message "[_ tasks.lt_The_task_a_hreftaskst_1]" Index: openacs-4/packages/tasks/www/task.xql =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/tasks/www/Attic/task.xql,v diff -u -r1.1 -r1.2 --- openacs-4/packages/tasks/www/task.xql 6 Oct 2005 16:31:55 -0000 1.1 +++ openacs-4/packages/tasks/www/task.xql 7 Nov 2005 18:03:27 -0000 1.2 @@ -41,7 +41,7 @@ t.description, t.comment, to_char(t.due_date,'YYYY-MM-DD') as due_date, - t.priority, t.status_id as status, t.object_id + t.priority, t.status_id as status, t.object_id, t.assignee_id from t_tasks t where