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!

why?

thanks!
Alon.

I just found out that when the value is “true” it actually adds it to
the URL, however when it’s “false” it doesn’t! why is that?