diff options
author | madlep <madlep@ubercharged.net> | 2008-10-06 23:43:03 +0100 |
---|---|---|
committer | Pratik Naik <pratiknaik@gmail.com> | 2008-10-06 23:43:41 +0100 |
commit | 8e50f0f96ef53ee8cc7ffa86ce0e71cc357b2b6c (patch) | |
tree | a4981b6aae144164887ae2827d47e6ad32a6c73d /actionpack/lib | |
parent | efb9ef65ccd1e047605887fc76eab41b9add45bd (diff) | |
download | rails-8e50f0f96ef53ee8cc7ffa86ce0e71cc357b2b6c.tar.gz rails-8e50f0f96ef53ee8cc7ffa86ce0e71cc357b2b6c.tar.bz2 rails-8e50f0f96ef53ee8cc7ffa86ce0e71cc357b2b6c.zip |
Fix image_tag behavior on windows. [#1085 state:resolved]
Signed-off-by: Pratik Naik <pratiknaik@gmail.com>
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_view/helpers/asset_tag_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/asset_tag_helper.rb b/actionpack/lib/action_view/helpers/asset_tag_helper.rb index 63ccde393a..93d38eb929 100644 --- a/actionpack/lib/action_view/helpers/asset_tag_helper.rb +++ b/actionpack/lib/action_view/helpers/asset_tag_helper.rb @@ -596,7 +596,7 @@ module ActionView end def missing_extension?(source) - extension && File.extname(source).blank? || File.exist?(File.join(ASSETS_DIR, directory, "#{source}.#{extension}")) + extension && (File.extname(source).blank? || File.exist?(File.join(ASSETS_DIR, directory, "#{source}.#{extension}"))) end def prepend_relative_url_root(source) |