| Article: |
Rolling with Ruby on Rails | |
| Subject: | Errors in the end | |
| Date: | 2005-07-27 12:09:43 | |
| From: | acidbox | |
|
Response to: Errors in the end
|
||
|
I am also getting a similar error:
23:
|
||
Showing messages 1 through 2 of 2.
-
Errors in the end
2005-07-27 12:35:22 acidbox [View]
-
Errors in the end
2005-07-27 12:32:34 Curt Hibbs |
[View]
Check your database and make sure all of your recipe entries have valid category ids.



Basically I had to change this:
<%= ' selected' if category.id == @recipe.category.id %>
to this:
<%= ' selected' if category.id == @recipe.category_id %>