So I have this
resources :forums do resources :topics end
But when I try to do this:
<%= forum_topics_path(1, 2) %>
I get:
/forums/1/topics.2
Why the dot? Expecting a slash
This is rails3.. so maybe I am doing it wrong to what I'm used to
cheers for any info!