Image tag automatically appending some parameter

Hello,

I just took over some project and I noticed some odd behaviour : every image_tag executed inside my views generate the needed code, but also append some sort of non random parameter wich I never asked for !

For example :

= image_tag 'tables/first.png', :border => 0, :class => 'first'

will generate :

<img border="0" id="bottom_connexion" src="/images/tables/first.png?1268837874" />

!!!!!

How can I get rid of this ' ?1268837874 ' ?

Thanks,

Nicolas

You can find more information here:

http://railsforum.com/viewtopic.php?id=19518 http://www.ruby-forum.com/topic/98220

You can find more information here:

http://railsforum.com/viewtopic.php?id=19518

I think that one is a bit confusing.

Numbers on stylesheet_link_tag and image_tag - Rails - Ruby-Forum

That one explains it well for me.

Colin