Displaying 1 result from an estimated 1 matches for "is_a_favorit".
Did you mean:
is_a_favorite
2007 Jan 31
1
help please!
Hi,
I''ll appreciate insight on this one... it''s causing me some pain on my
production env.
<%= link_to "something",
:controller => "somecontroller",
:action => ''someaction'',
:id => someid,
:favorite => is_a_favorite %>
I added a boolean :favorite to the URL arguments.
THis has always worked well under my dev environment (webrick) and
produced:
<a href="/somecontroller/someaction/someid?favorite=false>
but now, under production, with lighttpd it ignores the added argument!
<a href="/...