From b7a4850b0639c33d42555bb91ad395948ea042f3 Mon Sep 17 00:00:00 2001 From: Eric Davis Date: Mon, 19 Jan 2009 11:20:00 -0800 Subject: [PATCH] Wrong name for the project select field. #1914 --- app/views/rates/_form.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/rates/_form.html.erb b/app/views/rates/_form.html.erb index 75770f1..4501424 100644 --- a/app/views/rates/_form.html.erb +++ b/app/views/rates/_form.html.erb @@ -15,7 +15,7 @@ <%= # TODO: move to controller once a hook is in place for the Admin panel projects = Project.find(:all, :conditions => { :status => Project::STATUS_ACTIVE}, :include => :parent) - select_tag("rate_project_id", projects_options_for_select(projects)) + select_tag("rate[project_id]", projects_options_for_select(projects)) %>