Can anyone tell me why the following code in a helper method
$stdout.puts image_tag("ravenala_v1.png")
would produce the following output
<img alt="Ravenala_v1" src="/images/ravenala_v1.png?1182127556" />
instead of
<img alt="Ravenala_v1" src="/images/ravenala_v1.png" />
It looks like some kind of strange GET parameter has been appended.
Thanks in advance...
- Peter