From 70357666bc86629c8d10501209105b144855ddbc Mon Sep 17 00:00:00 2001 From: thedarkone Date: Sat, 25 Sep 2010 16:42:35 +0200 Subject: Do a single string interpolation. --- actionpack/lib/action_view/helpers/asset_tag_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actionpack/lib/action_view/helpers/asset_tag_helper.rb b/actionpack/lib/action_view/helpers/asset_tag_helper.rb index 59d1c8b7eb..efd238c692 100644 --- a/actionpack/lib/action_view/helpers/asset_tag_helper.rb +++ b/actionpack/lib/action_view/helpers/asset_tag_helper.rb @@ -813,7 +813,7 @@ module ActionView if asset_id.empty? source else - source + "?#{asset_id}" + "#{source}?#{asset_id}" end end -- cgit v1.2.3