Index: openacs-4/packages/project-manager/catalog/project-manager.en_US.ISO-8859-1.xml
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/project-manager/catalog/project-manager.en_US.ISO-8859-1.xml,v
diff -u -r1.43 -r1.44
--- openacs-4/packages/project-manager/catalog/project-manager.en_US.ISO-8859-1.xml	19 Oct 2005 19:09:16 -0000	1.43
+++ openacs-4/packages/project-manager/catalog/project-manager.en_US.ISO-8859-1.xml	20 Oct 2005 16:29:37 -0000	1.44
@@ -496,6 +496,7 @@
   <msg key="Quantity">Quantity:</msg>
   <msg key="Rate">Rate</msg>
   <msg key="rate">Rate</msg>
+  <msg key="Rate_Assignees">Rate Assignees</msg>
   <msg key="Rate_this_project">Rate this project</msg>
   <msg key="rate_this_project">Rate This Project</msg>
   <msg key="Related_task_terms">Related %task_term%s</msg>
Index: openacs-4/packages/project-manager/templates/task-ae.tcl
===================================================================
RCS file: /usr/local/cvsroot/openacs-4/packages/project-manager/templates/task-ae.tcl,v
diff -u -r1.5 -r1.6
--- openacs-4/packages/project-manager/templates/task-ae.tcl	14 Oct 2005 22:53:22 -0000	1.5
+++ openacs-4/packages/project-manager/templates/task-ae.tcl	20 Oct 2005 16:29:38 -0000	1.6
@@ -196,7 +196,7 @@
 if {!$use_uncertain_completion_times_p} {
     ad_form -extend -name task_add_edit \
 	-form {
-	    {estimated_hours_work:text
+	    {estimated_hours_work:float
 		{label " "}
 		{html {size 5}}
 		{after_html $work_units}
@@ -206,14 +206,14 @@
 } elseif {[string is true $use_day_p]} {
     ad_form -extend -name task_add_edit \
 	-form {
-	    {estimated_days_work_min:text
+	    {estimated_days_work_min:float
 		{label "[_ project-manager.Min]"}
 		{html {size 5}}
 		{after_html $work_units}
 		{section "[_ project-manager.Work_required]"}
 	    }
         
-	    {estimated_days_work_max:text
+	    {estimated_days_work_max:float
 		{label "[_ project-manager.Max]"}
 		{html {size 5}}
 		{after_html $work_units}
@@ -223,14 +223,14 @@
 } else {
     ad_form -extend -name task_add_edit \
 	-form {
-	    {estimated_hours_work_min:text
+	    {estimated_hours_work_min:float
 		{label "[_ project-manager.Min]"}
 		{html {size 5}}
 		{after_html $work_units}
 		{section "[_ project-manager.Work_required]"}
 	    }
         
-	    {estimated_hours_work_max:text
+	    {estimated_hours_work_max:float
 		{label "[_ project-manager.Max]"}
 		{html {size 5}}
 		{after_html $work_units}
@@ -448,6 +448,7 @@
     set end_date(month)  [lindex [set end_date_split] 1]
     set end_date(year)   [lindex [set end_date_split] 0]
     set end_date(format) ""
+
     ad_page_contract_filter_proc_date end_date end_date
 
     set task_end_date_list [split $end_date(date) "-"]