Displaying 1 result from an estimated 1 matches for "the_range".
Did you mean:
me_range
2006 Jun 19
0
url_for missing out parameters?
...;'page/:id/:range'', :action => ''the_action''
All looks fairly normal. I have an url_for on this page to make a link
to another page as so:
url_for(:controller=>''other'', :action=>''display'', :id=>5,
:range=>''the_range'')
This URL comes out as:
/other/display/5
You''ll note that the ''range'' is missing.
Passing in anything else other than ''range'' works fine.
IE:
url_for(:controller=>''other'', :action=>''display'', :id=&...