That error message seems to indicate that :back creates a link to the
index action of the controller. The message says that it can't find an
index action and then lists the actions it did find.
My book says :back refers to the url in the HTTP_REFERER header in the
current request. Maybe :back isn't finding any url, so link_to is
defaulting to :index?
--
Posted via http://www.ruby-forum.com/.
I tested that out, and it seems that when you don't specify an action
for link_to, the action defaults to the current action.